-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
99 lines (99 loc) · 2.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "foca",
"version": "3.2.0",
"repository": "[email protected]:foca-js/foca.git",
"homepage": "https://foca.js.org",
"keywords": [
"redux",
"redux-model",
"redux-typescript",
"react-redux",
"react-model",
"redux-toolkit"
],
"description": "流畅的React状态管理库",
"contributors": [
"罪 <[email protected]> (https://github.com/geekact)"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "vitest run",
"prepublishOnly": "tsup",
"docs": "docsify serve ./docs",
"prepare": "husky"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md",
"CHANGELOG.md"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"volta": {
"node": "18.16.0",
"pnpm": "8.4.0"
},
"packageManager": "[email protected]",
"peerDependencies": {
"react": "^18.0",
"react-native": ">=0.69",
"typescript": "^5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"react-native": {
"optional": true
}
},
"dependencies": {
"immer": "^9.0.21",
"react-redux": "^9.1.0",
"redux": "^5.0.1",
"topic": "^3.0.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@react-native-async-storage/async-storage": "^1.22.2",
"@redux-devtools/extension": "^3.3.0",
"@testing-library/react": "^14.2.1",
"@types/node": "^20.11.20",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@vitest/coverage-istanbul": "^1.3.1",
"docsify-cli": "^4.4.4",
"fake-indexeddb": "^5.0.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"localforage": "^1.10.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rxjs": "^7.8.1",
"sleep-promise": "^9.1.0",
"ts-expect": "^1.3.0",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
}
}