-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "flooks",
"version": "6.4.0",
"description": "State Manager for React Hooks, Auto Optimized",
"keywords": [
"react",
"hooks",
"flux",
"redux",
"store",
"state",
"flooks"
],
"license": "MIT",
"author": "nanxiaobei <[email protected]> (https://github.com/nanxiaobei)",
"homepage": "https://github.com/nanxiaobei/flooks",
"repository": "github:nanxiaobei/flooks",
"bugs": "https://github.com/nanxiaobei/flooks/issues",
"main": "dist/flooks.cjs.js",
"module": "dist/flooks.esm.js",
"types": "dist/flooks.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"build": "rm -rf dist coverage && rollup -c --configPlugin @rollup/plugin-typescript",
"u": "pnpm up --latest && pnpm add -D [email protected]"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"tslib": "^2.6.3",
"use-sync-external-store": "^1.2.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/node": "^22.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/use-sync-external-store": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5"
}
}