-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (66 loc) · 1.74 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
{
"name": "zustand-pub",
"version": "1.0.0-beta.19",
"description": "Cross-Application/Cross-Framework State Management And Sharing based on zustand for React/Vue",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx vite build && npx tsc --emitDeclarationOnly",
"demo:iframe": " pnpm -r --filter './demo/iframe/**' run dev",
"demo:micro": " pnpm -r --filter './demo/micro-app/**' run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeDevin/zustand-pub.git"
},
"sideEffects": false,
"types": "./dist/typings/index.d.ts",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/typings/index.d.ts",
"import": "./dist/index.mjs",
"module": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/typings/*.d.ts",
"import": "./dist/*.mjs",
"module": "./dist/*.mjs",
"require": "./dist/*.js",
"default": "./dist/*.js"
}
},
"files": [
"dist/typings/",
"dist/*.mjs",
"dist/*.js"
],
"keywords": [
"zustand",
"zustand-vue",
"state sharing",
"state management",
"micro-frontend",
"modularization",
"react",
"vue"
],
"author": "AwesomeDevin",
"license": "MIT",
"bugs": {
"url": "https://github.com/AwesomeDevin/zustand-pub/issues"
},
"homepage": "https://github.com/AwesomeDevin/zustand-pub#readme",
"peerDependencies": {
"zustand": ">=4.1.4",
"zustand-vue": ">=1.0.0-beta.24"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"typescript": "4.9.3",
"vite": "^4.0.4",
"zustand-vue": "1.0.0-beta.24"
}
}