forked from strblr/react-stored
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.37 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-stored",
"version": "2.0.3",
"description": "The ultimate useStore implementation. The power and simplicity of useState, but with persistence, global key-based synchronization without context, speed and reference optimization, safety checks, and other cool stuff.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"push": "git add . && git commit -m 'mini update' && git push -u origin master",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ostrebler/react-stored.git"
},
"keywords": [
"react",
"store",
"storage",
"state",
"setState",
"localStorage",
"stored",
"global",
"safe",
"serialization",
"deserialization",
"data",
"persistence",
"use",
"hook"
],
"author": "ostrebler",
"license": "MIT",
"bugs": {
"url": "https://github.com/ostrebler/react-stored/issues"
},
"homepage": "https://github.com/ostrebler/react-stored#readme",
"devDependencies": {
"@types/react": "^16.9.17",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"react": "^16.13.1",
"typescript": "^3.7.4"
},
"peerDependencies": {
"react": ">=16.8"
}
}