-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.21 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
{
"name": "mini-redux",
"description": "Less than 1kb glob state management implement",
"main": "index.js",
"scripts": {
"build": "tsup",
"bench": "vitest bench --outputJson benchlib/result.json --run && esno scripts/benchmark.ts",
"bench:compare": "vitest bench --compare=benchlib/result.json",
"dev:web": "pnpm -F react-store-web run dev",
"test": "vitest --dir packages/web-test",
"dev:core": "tsup --watch",
"dev": "npm-run-all --parallel dev:*",
"pub": "pnpm build && cd ./packages/store && pnpm publish"
},
"license": "MIT",
"devDependencies": {
"@plumbiu/eslint-config": "^0.2.1",
"@plumbiu/react-store": "workspace:^",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.5.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/ui": "latest",
"eslint": "8",
"esno": "^4.7.0",
"npm-run-all": "^4.1.5",
"jsdom": "^25.0.0",
"terser": "^5.31.6",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vitest": "^2.0.5"
}
}