-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.93 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
{
"name": "zhuangtai",
"version": "0.1.0",
"description": "A react state manager with rxjs.",
"scripts": {
"test": "vitest run",
"tsc": "tsc",
"test:coverage": "vitest run --coverage",
"build": "tsc && vite build",
"prettier": "prettier --write './{src,tests}/**/*.{js,jsx,ts,tsx,json}'"
},
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/zhuangtai.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/zhuangtai.js"
},
"./plugins/immer": {
"types": "./dist/plugins/immer.d.ts",
"import": "./dist/plugins/immer.js"
},
"./plugins/persist": {
"types": "./dist/plugins/persist.d.ts",
"import": "./dist/plugins/persist.js"
},
"./plugins/history": {
"types": "./dist/plugins/history.d.ts",
"import": "./dist/plugins/history.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
}
},
"engines": {
"node": ">=16"
},
"author": "xiaojundebug <[email protected]>",
"license": "MIT",
"homepage": "https://xiaojundebug.github.io/zhuangtai",
"repository": "[email protected]:xiaojundebug/zhuangtai.git",
"keywords": [
"react",
"store",
"state",
"rxjs"
],
"files": [
"dist"
],
"dependencies": {
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@types/react": "^16.8",
"@types/use-sync-external-store": "0.0.3",
"@vitest/coverage-c8": "^0.31.4",
"@vitest/ui": "^0.31.4",
"immer": "^9.0",
"jsdom": "^22.1.0",
"prettier": "^2.7.1",
"react": "^16.8",
"rxjs": "^7.0",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.4"
},
"peerDependencies": {
"immer": ">=9.0",
"react": ">=16.8",
"rxjs": ">=7.0"
},
"peerDependenciesMeta": {
"immer": {
"optional": true
},
"react": {
"optional": true
}
}
}