-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.01 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "useful-state-hooks",
"author": "David Jensen <[email protected]>",
"version": "1.3.3",
"description": "Useful React hooks written in Typescript",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Tsourdox/useful-state-hooks.git"
},
"bugs": {
"url": "https://github.com/Tsourdox/useful-state-hooks/issues"
},
"homepage": "https://github.com/Tsourdox/useful-state-hooks",
"scripts": {
"build": "tsc && vite build",
"test": "vitest --reporter verbose",
"coverage": "vitest run --coverage",
"types": "tsc --noEmit",
"lint": "eslint ./src",
"format": "prettier ./ --check",
"check": "npm run types && npm run lint && npm run format"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitejs/plugin-react": "^2.0.1",
"@vitest/coverage-c8": "^0.22.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^6.0.4",
"prettier": "2.7.1",
"react": "^18.2.0",
"typescript": "^4.6.4",
"vite": "^3.0.7",
"vite-plugin-dts": "^1.4.1",
"vitest": "^0.22.1"
},
"keywords": [
"react",
"hook",
"hooks",
"state",
"state hook",
"react hooks",
"react state hooks",
"typescript",
"typed",
"useful",
"useListState",
"useLocalStorageState",
"useDebounceState",
"local",
"storage",
"localstorage",
"list",
"array",
"mutate",
"mutation",
"help",
"helper",
"debounce",
"flush",
"abort",
"cancel",
"wait",
"delay",
"update",
"set",
"add",
"remove",
"sort"
]
}