-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.45 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "use-better-state",
"version": "0.3.4",
"scripts": {
"build": "npx father build",
"version": "npm run build",
"prepublishOnly": "npm version patch && git push",
"release": "npm run build && npm publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:hawx1993/use-better-state.git"
},
"keywords": [
"hooks",
"react hooks",
"useState"
],
"files": [
"dist"
],
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"typings": "dist/esm/index.d.ts",
"engines": {
"node": ">=12"
},
"publishConfig": {
"ignore": [
"src/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": ">=17.0.2"
},
"dependencies": {
"immer": "^9.0.16",
"nanoid": "^4.0.0"
},
"devDependencies": {
"@babel/core": "7.19.6",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "7.18.6",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "29.2.0",
"@types/react": "17.0.21",
"babel-jest": "29.2.2",
"father": "4.1.0",
"husky": "4.3.8",
"react": "17.0.2",
"react-test-renderer": "16.9.0",
"ts-jest": "29.0.3"
},
"resolutions": {
"@babel/plugin-transform-typescript": "7.19.3"
}
}