-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "goctl",
"displayName": "goctl",
"description": "goctl visual studio code extension",
"version": "0.1.10",
"publisher": "xiaoxin-technology",
"icon": "images/go-zero-logo.png",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Formatters"
],
"activationEvents": [
"onLanguage:goctl"
],
"repository": {
"type": "git",
"url": "https://github.com/zeromicro/goctl-vscode"
},
"bugs": {
"url": "https://github.com/zeromicro/goctl-vscode/issues"
},
"keywords": [
"go-zero"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "goctl",
"aliases": [
"goctl",
"goctl"
],
"extensions": [
".api"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "goctl",
"scopeName": "source.goctl",
"path": "./syntaxes/goctl.tmLanguage.json"
}
],
"snippets": [
{
"language": "goctl",
"path": "./snippets/goctl.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"test": "npm run compile && npm run lint"
},
"devDependencies": {
"@types/node": "^12.12.47",
"@types/vscode": "^1.46.0",
"tslint": "^5.20.1",
"typescript": "^3.9.5",
"vscode-test": "^1.4.0"
},
"dependencies": {
"tree-kill": "^1.2.2"
}
}