-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "@curiosbasant/react-compooks",
"version": "0.4.0",
"description": "Curios's frequently used react hooks collection.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"ci": "pnpm run lint && pnpm run build",
"lint": "tsc",
"release": "pnpm run lint && pnpm run build && changeset publish"
},
"peerDependencies": {
"immer": "8 || 9",
"js-cookie": "3",
"react": "16 || 17 || 18"
},
"peerDependenciesMeta": {
"immer": {
"optional": true
},
"js-cookie": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/js-cookie": "^3.0.3",
"@types/react": "18.0.28",
"immer": "^9.0.19",
"js-cookie": "^3.0.1",
"react": "18.2.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"keywords": [
"react",
"hooks",
"components",
"curios"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CuriosBasant/react-compooks.git"
},
"bugs": {
"url": "https://github.com/CuriosBasant/react-compooks/issues"
},
"homepage": "https://github.com/CuriosBasant/react-compooks#readme",
"author": "CuriosBasant <[email protected]>",
"license": "MIT"
}