-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "hoocs",
"version": "1.1.5",
"description": "A CLI-driven React hooks library offering a collection of ready-to-use Typescript hooks that you can easily copy, customize, and integrate into your projects.",
"main": "dist/index.js",
"bin": {
"hoocs": "./dist/index.js"
},
"author": "Azlan Ibrahim",
"license": "MIT",
"homepage": "https://hoocs-web.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/azlibdar/hoocs.git"
},
"bugs": {
"url": "https://github.com/azlibdar/hoocs/issues"
},
"keywords": [
"react",
"hooks",
"hoocs",
"custom-hooks",
"open-source",
"cli driven hooks",
"typescript hooks",
"copy-paste hooks"
],
"type": "module",
"files": [
"dist/index.js",
"hooks"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^11.1.0",
"fs-extra": "^11.3.0",
"inquirer": "^8.2.6",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
}