-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 893 Bytes
/
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
{
"name": "denominator",
"version": "1.0.0",
"description": "cli for generating component for react",
"main": "./src/index.js",
"scripts": {
"postbuild": "copyfiles ./src/templates/component/*.ext ./dist/",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/src/index.js",
"init": "tsc --init",
"int": "npm i -g ./dist"
},
"keywords": [
"cli"
],
"bin": {
"damn": "./src/index.js"
},
"author": "Miten Gajjar",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.0",
"prettier": "^2.7.1"
},
"devDependencies": {
"@types/node": "^18.7.2",
"@types/prettier": "^2.7.0",
"copyfiles": "^2.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}