-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1023 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
45
46
47
48
{
"name": "create-hook-crafter",
"version": "2.1.1",
"description": "Set up your React hook library in seconds",
"repository": {
"type": "git",
"url": "https://github.com/novajslabs/hook-crafter"
},
"keywords": [
"react-hooks",
"react-custom-hook",
"react-custom-hooks",
"vite",
"typescript"
],
"author": {
"name": "Daniel Castillo",
"email": "[email protected]",
"url": "https://dlcastillop.com"
},
"license": "MIT",
"files": [
"dist",
"template"
],
"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",
"prompts": "2.4.2"
},
"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"
}
}