-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 KB
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
{
"name": "wegar-store",
"private": false,
"version": "0.0.13",
"type": "module",
"description": "Wegar 前端状态管理",
"author": {
"name": "qnnp",
"email": "qnnp@qnnp.me",
"url": "https://qnnp.me"
},
"repository": {
"url": "https://github.com/qnnp-me/wegar-store",
"type": "git"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"patch": "pnpm version patch && pnpm build && pnpm publish"
},
"peerDependencies": {
"zustand": ">=4.0.0"
},
"optionalDependencies": {
"react": "^19.2.4"
},
"files": [
"dist/*"
],
"main": "./dist/index.mjs",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.19.11",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^15.15.0",
"react-dom": "^19.2.4",
"typescript": "~5.7.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
}
}