-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "use-dynamic-hook",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"version": "1.0.2",
"description": "A custom React hook that provides a flexible and dynamic way to manage state and execute logic within functional components",
"main": "index.ts",
"scripts": {
"build": "rimraf dist && tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ethern-Myth/use-dynamic-hook.git"
},
"keywords": [
"custom",
"hook",
"react",
"state",
"management",
"typescript",
"javascript"
],
"author": "Ethern Myth",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ethern-Myth/use-dynamic-hook/issues"
},
"homepage": "https://github.com/Ethern-Myth/use-dynamic-hook#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.19",
"@types/react": "^18.2.56",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}