-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "@jarzzzi/wolverine-state",
"version": "0.0.1",
"description": "",
"entry": "src/index.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"demo": "parcel serve ./demo/index.html",
"build": "rollup -c rollup.config.ts",
"version": "npm version patch",
"publish": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jarweb/wolverine-state.git"
},
"keywords": [
"react",
"react hook",
"immer",
"state management"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jarweb/wolverine-state/issues"
},
"homepage": "https://github.com/Jarweb/wolverine-state#readme",
"dependencies": {
"immer": "^6.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@jarzzzi/nidavel": "^1.0.6",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"parcel-bundler": "^1.12.4",
"rollup": "^2.6.1",
"typescript": "^3.8.3"
}
}