-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
34 lines (34 loc) · 988 Bytes
/
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
{
"name": "vue-template-ast-to-template",
"version": "0.1.0",
"description": "transform vue template ast to the template what you want",
"main": "dist/index.js",
"scripts": {
"bundle": "rollup --config",
"typings": "tsc -d --declarationDir typings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommanderXL/vue-template-ast-to-template.git"
},
"keywords": [],
"author": "XRene",
"license": "ISC",
"bugs": {
"url": "https://github.com/CommanderXL/vue-template-ast-to-template/issues"
},
"homepage": "https://github.com/CommanderXL/vue-template-ast-to-template#readme",
"dependencies": {
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"devDependencies": {
"rollup": "^1.10.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"typings": "./typings/index.d.ts"
}