-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "react-reducer-utils",
"version": "5.0.1",
"type": "module",
"description": "Utilities to help construct \"normalized\" states when using useReducer in react-hook.",
"homepage": "https://github.com/chhsiao1981/react-reducer-utils",
"repository": {
"type": "git",
"url": "https://github.com/chhsiao1981/react-reducer-utils"
},
"main": "src/index.ts",
"files": ["src", "dist", "types"],
"author": {
"name": "Chuan-Heng Hsiao",
"email": "hsiao.chuanheng@gmail.com"
},
"keywords": ["react", "useReducer", "normalized state"],
"scripts": {
"clean:lib": "rimraf ./dist/* ./types/*",
"compile:lib": "vite build",
"build:lib": "npm run clean:lib && npm run types && npm run compile:lib",
"build": "npm run build:lib",
"lint": "biome lint --error-on-warnings",
"test": "vitest run",
"types": "tsc -b",
"coverage": "vitest run --coverage"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"happy-dom": "^17.1.0",
"jiti": "^2.4.2",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"dependencies": {
"react": "^19.0.0",
"uuid": "^11.0.5"
}
}