-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "reproto",
"displayName": "reproto",
"description": "Language support for reproto",
"version": "0.3.4",
"license": "MIT",
"publisher": "udoprog",
"icon": "icon.png",
"galleryBanner": {
"color": "#336356",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/reproto/reproto-vscode"
},
"bugs": {
"url": "https://github.com/reproto/reproto-vscode/issues"
},
"engines": {
"vscode": "^1.44.1"
},
"categories": [
"Themes",
"Programming Languages"
],
"keywords": [
"reproto",
"json"
],
"activationEvents": [
"workspaceContains:reproto.toml",
"onLanguage:reproto",
"onCommand:reproto.init"
],
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "reproto",
"aliases": [
"Reproto",
"reproto"
],
"extensions": [
".reproto"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "reproto",
"scopeName": "source.reproto",
"path": "./syntaxes/reproto.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "reproto language support configuration",
"properties": {
"reproto.executable": {
"type": "string",
"description": "path to reproto executable"
},
"reproto.debug": {
"type": "boolean",
"default": false,
"description": "enable debug logging"
},
"reproto.log": {
"type": "string",
"description": "when running as a \"language-client\", specify a file to log to"
}
}
},
"commands": [
{
"command": "reproto.init",
"title": "initialize a new project",
"category": "Reproto"
}
]
},
"scripts": {
"vscode:prepublish": "tsc && rollup -c",
"package": "vsce package -o reproto.vsix",
"build": "tsc",
"watch": "tsc -watch",
"pretest": "npm run build",
"lint": "tsfmt --verify && eslint -c .eslintrc.js --ext ts ./src",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"vscode-languageclient": "^6.1.3",
"tar-stream": "^2.1.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^12.7.0",
"@types/tar-stream": "^2.1.0",
"@types/vscode": "^1.44.1",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"rollup": "^2.18.1",
"typescript": "^3.9.6",
"typescript-formatter": "^7.2.2",
"vsce": "^1.75.0"
}
}