-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1002 Bytes
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
{
"name": "ant",
"displayName": "Ant.Design Vue helper",
"description": "A vscode extension for Ant Design of Vue",
"version": "0.0.16",
"icon": "images/icon.png",
"publisher": "zlxag",
"engines": {
"vscode": "^1.5.0"
},
"galleryBanner": {
"color": "#E6E0EA",
"theme": "light"
},
"categories": [
"Snippets"
],
"activationEvents": [
"onCommand:extension.sayHello"
],
"main": "./extension",
"contributes": {
"snippets": [
{
"language": "vue-html",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"eslint": "^4.11.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
}
}