-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 892 Bytes
/
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": "@stein197/restore",
"version": "1.0.0",
"description": "Simple key-based store management library with React support",
"main": "index.js",
"scripts": {
"clean": "del .\\*.js .\\*.d.ts .\\*.map 2>nul",
"build": "tsc",
"test": "ts-mocha test.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stein197/restore.git"
},
"keywords": [
"react",
"store",
"useStore"
],
"author": "Nail' Gafarov",
"license": "MIT",
"bugs": {
"url": "https://github.com/stein197/restore/issues"
},
"homepage": "https://github.com/stein197/restore#readme",
"devDependencies": {
"@stein197/test-sandbox": "github:stein197/js-test-sandbox",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"@types/react": "^18.0.28",
"react": "^18.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.0.2"
}
}