-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "zoov-template",
"version": "0.0.0",
"author": "InfiniteXyy",
"private": true,
"license": "MIT",
"main": "index.js",
"types": "./dist/types/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"build": "rimraf ./dist && rollup -c rollup.config.mjs && node ./after-build.cjs",
"prepare": "npm run build",
"publish": "cd dist && npm publish",
"test": "vitest run --coverage",
"example": "cd example && vite",
"taze": "taze -w major"
},
"devDependencies": {
"@redux-devtools/extension": "^3.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.4",
"fs-extra": "^11.2.0",
"immer": "^10.1.1",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"proxy-compare": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-tracked": "^2.0.1",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"rollup": "^4.25.0",
"rxjs": "^7.8.1",
"scheduler": "^0.23.2",
"taze": "^0.18.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"use-sync-external-store": "^1.2.2",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"zustand": "^5.0.1"
}
}