-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "vue-type-check",
"version": "1.1.0",
"description": "a type checker for typescript written Vue components",
"main": "dist/index.js",
"bin": {
"vue-type-check": "dist/cli.js",
"vtc": "dist/cli.js"
},
"scripts": {
"compile": "tsc -p .",
"watch": "tsc --watch",
"typings": "tsc -d --emitDeclarationOnly --declarationDir typings",
"start": "node dist/index.js",
"test": "node tests/component.spec.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Yuyz0112/vue-type-check.git"
},
"keywords": [
"vue",
"typescript",
"types",
"vetur"
],
"author": "yanzhen@smartx.com",
"license": "MIT",
"files": [
"dist",
"typings"
],
"typings": "typings/index.d.ts",
"dependencies": {
"chalk": "^4.1.0",
"glob": "^7.1.6",
"minimist": "^1.2.5",
"progress": "^2.0.3",
"vscode-languageserver": "^6.1.1",
"vue-language-server": "^0.0.67"
},
"peerDependencies": {
"typescript": "^3.9.6"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/glob": "^7.1.3",
"@types/minimist": "^1.2.0",
"@types/prettier": "^2.0.2",
"@types/progress": "^2.0.3",
"typescript": "^3.9.6",
"vue": "^2.6.10"
}
}