generated from PlasmoHQ/qtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "use-hashed-state",
"version": "0.3.5",
"description": "Safely store data in localstorage with an unique key of any type, even a component",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "run-p dev:*",
"dev:compile": "tsup src/index.ts --watch --sourcemap",
"dev:test": "jest --watch",
"build": "tsup src/index.ts --dts-resolve --format esm --minify --clean",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "run-s build"
},
"author": "Plasmo Corp. <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/PlasmoHQ/use-hashed-state.git"
},
"license": "MIT",
"keywords": [
"localstorage",
"react-hook",
"persisted-state",
"hashed-state",
"hashed-keys"
],
"peerDependencies": {
"react": "^16.8.6 || ^17 || ^18"
},
"dependencies": {
"node-object-hash": "3.0.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@jest/types": "29.6.3",
"@plasmohq/storage": "workspace:*",
"@testing-library/react": "14.1.2",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"cross-env": "7.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"tsup": "8.0.1",
"typescript": "5.3.3"
}
}