-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 KB
/
package.json
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
{
"name": "component-boilerplater",
"version": "1.1.2",
"description": "Generating component, test, stories, and index files automatically.",
"main": "dist/main.js",
"scripts": {
"dev": "npm run build && node dist/main.js",
"build": "npm run rollup",
"rollup": "rollup -c --bundleConfigAsCjs && npm run cp-contents",
"cp-contents": "cp -r src/contents dist/contents",
"gen": "gencb"
},
"author": "",
"license": "ISC",
"bin": {
"gencb": "./bin/cli"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/fs-extra": "^11.0.4",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"rollup": "^4.14.0",
"rollup-plugin-analyzer": "^4.0.0",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"files": [
"dist",
"bin"
]
}