-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
{
"name": "vue-immer-store",
"version": "1.0.0",
"description": "A vue plugin that uses immer-js as vue's state manager, redo/undo is supported.",
"main": "./dist/immer-store.js",
"source": "./src/immer-store.js",
"typings": "./dist/immer-store.d.ts",
"files": ["/dist", "/src"],
"scripts": {
"compile": "tsc",
"prepack": "rimraf dist && npm run compile",
"test": "echo no test"
},
"repository": {
"type": "git",
"url": "https://github.com/xujif/vue-immer-store"
},
"keywords": [
"vue",
"vue3",
"state",
"immutable",
"immer",
"immerjs",
"immer-js",
"redo",
"undo"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.2.0"
},
"peerDependencies": {
"@vue/composition-api": "^1.1.0",
"vue": "^2.6.0 || ^3.2.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"immer": "^9.0.15",
"vue-demi": "^0.13.5"
}
}