forked from HerringtonDarkholme/vue-ts-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 808 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
{
"name": "vue-ts-plugin",
"version": "0.1.1",
"description": "TypeScript Language Service Plugin for Vue",
"main": "bin/index.js",
"files": ["bin"],
"scripts": {
"prepublish": "node node_modules/typescript/lib/tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandersn/vue-ts-plugin.git"
},
"keywords": [
"typescript",
"vue"
],
"author": "Nathan Shively-Sanders",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sandersn/vue-ts-plugin/issues"
},
"homepage": "https://github.com/sandersn/vue-ts-plugin#readme",
"devDependencies": {
"@types/node": "^7.0.5",
"typescript": "^2.7.0"
},
"peer-dependencies": {
"vue-template-compiler": "*"
}
}