-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "@nightmaregaurav/persistent-storage",
"version": "0.0.1",
"description": "Persistent storage is a library that allows you to store hook's state in local storage or session storage so that the latest state is available even after the page is refreshed.",
"scripts": {
"compile": "tsc",
"clean": "rm -f *.js && rm -f *.d.ts && rm -f *.js.map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nightmaregaurav/persistent-storage.git"
},
"keywords": [
"persistence",
"persistent",
"persistent-storage",
"react-persistent-storage",
"react-persistent-hooks"
],
"author": "nightmaregaurav",
"license": "MIT",
"bugs": {
"url": "https://github.com/nightmaregaurav/persistent-storage/issues"
},
"homepage": "https://github.com/nightmaregaurav/persistent-storage#readme",
"devDependencies": {
"@types/node": "^20.11.17",
"@types/react": "^18.2.74",
"typescript": "^5.3.3"
},
"dependencies": {
"jotai": "^2.7.2",
"react": "^18.2.0"
}
}