forked from ambit-tsai/vue2-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "vue2-helpers",
"version": "1.1.6",
"description": "A util package to use Vue 2 with Composition API easily",
"author": {
"name": "Ambit Tsai",
"email": "[email protected]"
},
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"build": "node scripts/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambit-tsai/vue2-helpers.git"
},
"homepage": "https://github.com/ambit-tsai/vue2-helpers#readme",
"bugs": {
"url": "https://github.com/ambit-tsai/vue2-helpers/issues"
},
"peerDependencies": {
"@vue/composition-api": "^1",
"vue-router": "^3",
"vuex": "^3"
},
"peerDependenciesMeta": {
"vuex": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.3",
"@vue/composition-api": "^1.0.4",
"rollup": "^2.53.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.5",
"vue": "^2.6.14",
"vue-router": "^3.5.2",
"vuex": "^3.6.2"
},
"keywords": [
"vue",
"vue3",
"utils",
"helpers",
"composition",
"vuex",
"vue-router"
]
}