-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 929 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
44
{
"name": "@novajslabs/cli",
"version": "1.4.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 <[email protected]>",
"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": "12.1.0",
"fs-extra": "11.2.0",
"node-fetch": "3.3.2",
"ora": "8.1.1",
"prompts": "2.4.2",
"zod": "3.23.8"
},
"devDependencies": {
"@types/fs-extra": "11.0.4",
"@types/prompts": "2.4.9",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"type-fest": "4.29.0",
"typescript": "5.6.3"
}
}