-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 919 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
35
36
37
38
39
40
41
42
43
{
"name": "@novajslabs/cli",
"version": "1.0.0",
"description": "A CLI to add hooks to your React project",
"repository": {
"type": "git",
"url": "https://github.com/novajslabs/cli"
},
"keywords": [
"react",
"hook",
"hooks"
],
"author": "Daniel Castillo <daniel@dlcastillop.com>",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"start": "node dist/index.js"
},
"dependencies": {
"chalk": "5.2.0",
"commander": "^10.0.0",
"fs-extra": "^11.1.0",
"node-fetch": "^3.3.0",
"prompts": "^2.4.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/prompts": "^2.4.2",
"rimraf": "^4.1.3",
"tsup": "^6.6.3",
"type-fest": "^3.8.0",
"typescript": "^4.9.3"
}
}