-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.7 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
71
{
"name": "react-persist-store",
"version": "1.0.16",
"types": "./dist/index.d.ts",
"description": "⚡ A persistent state management library for React. Create your own hooks that share data across components",
"files": [
"dist"
],
"repository": "https://github.com/AndrewWalsh/react-persist-store",
"bugs": "https://github.com/AndrewWalsh/react-persist-store/issues",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"dev": "vite",
"test": "vitest",
"test:coverage": "vitest --coverage",
"build": "vite build",
"format": "prettier ./src --write",
"preview": "vite preview"
},
"keywords": [
"react",
"store",
"hook",
"functional",
"redux",
"typed",
"typescript",
"localstorage",
"sessionstorage",
"redux",
"browser",
"state",
"reactive",
"event",
"emitter",
"local"
],
"author": "Andrew Walsh",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^9.0.2",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.25",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.25.1",
"eventemitter2": "^6.4.9",
"jsdom": "^20.0.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.4.1",
"typescript": "^4.8.4",
"vite": "^3.2.2",
"vitest": "^0.24.5"
},
"peerDependencies": {
"eventemitter2": "^6.4.9",
"react": ">=17",
"react-dom": ">=17",
"store2": "^2.14.2",
"merge-anything": "^5.0.4"
}
}