-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "react-trick-local-storage",
"description": "Keep list of data as single local storage value and use it with react",
"version": "0.3.0",
"author": "Sergey Makarov",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/react-trick-local-storage.esm.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --coverage",
"lint": "tsdx lint src",
"prepare": "tsdx build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"homepage": "https://github.com/maxsbelt/react-trick-local-storage#README",
"repository": {
"type": "git",
"url": "https://github.com/maxsbelt/react-trick-local-storage.git"
},
"bugs": {
"url": "https://github.com/maxsbelt/react-trick-local-storage/issues"
},
"keywords": [
"local-storage",
"react"
],
"devDependencies": {
"@testing-library/react-hooks": "^8.0.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"husky": "^7.0.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^18.1.0",
"tsdx": "^0.14.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
}
}