-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "ejs-component",
"version": "0.0.30",
"author": "Stepan Kosatyi",
"license": "MIT",
"type": "module",
"description": "html object component",
"main": "dist/index.cjs.js",
"browser": "dist/index.umd.js",
"module": "dist/index.esm.js",
"minified": "dist/index.min.js",
"types": "types/index.d.ts",
"files": [
"types",
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w & vitest --coverage",
"test": "vitest run",
"bench": "vitest bench",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@vitest/coverage-v8": "^4.0.18",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.58.0",
"vitest": "^4.0.18"
}
}