-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 881 Bytes
/
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
{
"name": "@axtk/react-store",
"version": "3.0.3",
"description": "Compact shared-state management in React",
"main": "dist/index.js",
"scripts": {
"build": "esbuild dist/index.js --bundle --outfile=index.build.js --global-name=ReactStore",
"build:min": "npm run build -- --minify",
"tsc": "tsc"
},
"keywords": [
"store",
"shared state",
"react",
"react hooks"
],
"author": "axtk",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/axtk/react-store.git"
},
"dependencies": {
"@axtk/store": "^3.0.2"
},
"peerDependencies": {
"react": ">16.8"
},
"devDependencies": {
"@types/react": ">16.8",
"esbuild": "^0.14.1",
"esm": "^3.2.25",
"typescript": "^4.5.2"
},
"browser": {
"react": "./external.react.js"
},
"publishConfig": {
"access": "public"
}
}