-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"private": true,
"name": "volarjs-labs",
"version": "2.4.28",
"repository": {
"type": "git",
"url": "https://github.com/volarjs/volar.js.git",
"directory": "extensions/labs"
},
"sponsor": {
"url": "https://github.com/sponsors/johnsoncodehk"
},
"icon": "images/icon.png",
"displayName": "Volar Labs",
"description": "Volar Labs",
"author": "johnsoncodehk",
"publisher": "johnsoncodehk",
"engines": {
"vscode": "^1.82.0"
},
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "volarjs-labs",
"title": "Volar Labs",
"icon": "images/btn.svg"
}
]
},
"views": {
"volarjs-labs": [
{
"id": "volar-extensions",
"name": "Extensions",
"contextualTitle": "Volar.js"
},
{
"id": "volar-virtual-codes",
"name": "Virtual Codes",
"contextualTitle": "Volar.js"
},
{
"id": "volar-services",
"name": "Language Service Plugins",
"contextualTitle": "Volar.js"
}
]
}
},
"scripts": {
"prebuild": "tsc",
"build": "node scripts/build",
"watch": "tsc -w & npm run build -- --watch",
"prepack": "npm run build -- --minify",
"pack": "npm run prepack && vsce package",
"release": "npm run prepack && vsce publish",
"release:next": "npm run prepack && vsce publish --pre-release"
},
"devDependencies": {
"@types/vscode": "^1.82.0",
"@volar/language-server": "2.4.28",
"@volar/source-map": "2.4.28",
"@volar/vscode": "2.4.28",
"@vscode/vsce": "latest",
"esbuild": "latest"
}
}