-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "react-pinia",
"version": "2.5.9",
"description": "🍍构建react极简状态管理且可配置持久化数据",
"main": "lib/react-pinia.umd.js",
"module": "lib/react-pinia.es.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "vite",
"types": "tsup packages/main.tsx --dts",
"prebuild": "node build/version.js && npm run types",
"build": "tsc && vite build",
"postbuild": "node build/index.js",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcly861204/react-pinia.git"
},
"keywords": [
"react",
"store",
"state",
"react-pinia",
"typescript",
"ts",
"type",
"Provider",
"createStore",
"useStore",
"defineStore"
],
"author": {
"name": "tcly861204",
"email": "tcly861204@hotmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tcly861204/react-pinia/issues"
},
"homepage": "https://github.com/tcly861204/react-pinia#readme",
"devDependencies": {
"@types/node": "^18.0.6",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^1.3.0",
"mitt": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsup": "^6.6.3",
"typescript": "^4.6.3",
"vite": "^2.9.9"
},
"peerDependencies": {
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
}
}