-
-
Notifications
You must be signed in to change notification settings - Fork 438
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"private": true,
"name": "vscode-typescript-vue-plugin",
"version": "1.8.26",
"repository": {
"type": "git",
"url": "https://github.com/vuejs/language-tools.git",
"directory": "extensions/vscode-typescript-plugin"
},
"sponsor": {
"url": "https://github.com/sponsors/johnsoncodehk"
},
"icon": "images/icon.png",
"displayName": "TypeScript Vue Plugin (Volar)",
"description": "Vue Plugin for TypeScript server",
"author": "johnsoncodehk",
"publisher": "Vue",
"engines": {
"vscode": "*"
},
"contributes": {
"typescriptServerPlugins": [
{
"name": "typescript-vue-plugin-bundle",
"enableForWorkspaceTypeScriptVersions": true
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"prebuild": "cd ../.. && npm run build",
"build": "node scripts/build",
"watch": "node scripts/build --watch",
"pack": "vsce package",
"release": "vsce publish",
"release:next": "vsce publish --pre-release"
},
"devDependencies": {
"esbuild": "latest",
"typescript-vue-plugin": "1.8.26",
"vsce": "latest"
}
}