-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "react-complex-state",
"version": "1.4.0",
"description": "A custom hook that makes it easy when working with complex state in react.",
"author": "Suzan-Dev",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"dev": "tsc -w",
"build": "pnpm build:esm && pnpm build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"release": "pnpm build && dotenv release-it --"
},
"devDependencies": {
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"dotenv-cli": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^15.4.2",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"/lib"
],
"keywords": [
"react",
"react-hooks",
"state"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Suzan-Dev/react-complex-state.git"
},
"bugs": {
"url": "https://github.com/Suzan-Dev/react-complex-state/issues"
},
"homepage": "https://github.com/Suzan-Dev/react-complex-state",
"release-it": {
"github": {
"release": true,
"releaseName": "v${version}"
}
}
}