-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "vue2-composition-api",
"version": "1.0.10",
"description": "Using only the composition api implemented with Vue2's existing API, there are no compatibility issues to be considered",
"author": "Lin<2212477518@qq.com>",
"license": "ISC",
"module": "dist/bundle-esm.js",
"types": "dist/type.d.ts",
"keywords": [
"Vue2",
"Vue3",
"composition-api",
"Android 4",
"Object.defineProperty"
],
"files": [
"dist/*",
"package.json"
],
"scripts": {
"build": "rollup -c ./rollup.config.js"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-es2015": "^7.0.0-beta.53",
"rollup": "^2.79.0",
"@rollup/plugin-babel": "^5.3.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4"
},
"devDependencies": {
"typescript": "^4.8.3",
"vue": "2.6.10"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"repository": {
"type": "git",
"url": "git@github.com:Highnesslin/vue2-composition-api.git"
},
"bugs": {
"url": "https://github.com/Highnesslin/vue2-composition-api/issues"
},
"homepage": "https://github.com/Highnesslin/vue2-composition-api"
}