-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "zustand-vue",
"version": "1.0.0-beta.24",
"description": "State management for vue based on zustand",
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx rollup -c --bundleConfigAsCjs",
"dev": "npx rollup -c -w --development --bundleConfigAsCjs",
"pub": "npx vergo run -b -m main && npm publish",
"pub-pro": "npx vergo run -m main"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeDevin/zustand-vue.git"
},
"files": [
"build/"
],
"keywords": [
"zustand",
"state-management",
"external store",
"zustand-vue",
"vue",
"store"
],
"author": "AwesomeDevin",
"license": "MIT",
"bugs": {
"url": "https://github.com/AwesomeDevin/zustand-vue/issues"
},
"homepage": "https://github.com/AwesomeDevin/zustand-vue#readme",
"dependencies": {
"zustand": "^4.1.4"
},
"peerDependencies": {
"vue": ">=2.6.0",
"zustand": ">=4.1.4"
},
"devDependencies": {
"vergo": "0.0.1-beta.46",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-polyfill": "^4.0.0",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.3",
"vue": "3.2.45"
}
}