-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
{
"name": "@stackoverprof/use-shared-state",
"version": "2.2.2",
"description": "A zero-dependency React hook for sharing state across components with optional localStorage persistence and cross-tab sync",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"hook",
"state",
"shared-state",
"localstorage",
"typescript",
"lightweight"
],
"author": "stackoverprof",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.2.79",
"rollup": "^4.13.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/stackoverprof/use-shared-state.git"
},
"bugs": {
"url": "https://github.com/stackoverprof/use-shared-state/issues"
},
"homepage": "https://stackoverprof.github.io/use-shared-state-site/"
}