-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
165 lines (164 loc) · 5.13 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "boom-party",
"displayName": "Boom! Party",
"description": "Extension for Boom! Party editor (Project DaVinci).",
"version": "0.1.9",
"engines": {
"vscode": "^1.55.0"
},
"license": "MIT",
"publisher": "lilith-avatar",
"icon": "logo.png",
"categories": [
"Snippets",
"Other",
"Programming Languages",
"Formatters",
"Themes"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lilith-avatar/vscode-extension.git"
},
"activationEvents": [
"onCommand:boom-party.helloDaVinci",
"onView:fileExplorer"
],
"main": "./client/out/extension.js",
"activationEvents": [
"onLanguage:lua"
],
"contributes": {
"languages": [{
"id": "lua",
"extensions": [
".lua"
],
"configuration": "./language-configuration.json"
}],
"snippets": [{
"language": "lua",
"path": "./snippets/ava.json"
},
{
"language": "lua",
"path": "./snippets/lua.json"
},
{
"language": "lua",
"path": "./snippets/ldoc.json"
}
],
"commands": [{
"command": "boom-party.helloDaVinci",
"title": "Hello Da Vinci"
},
{
"command": "fileExplorer.refreshFile",
"title": "Refresh",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
},
{
"command": "fileExplorer.openFile",
"title": "Open File"
},
{
"command": "languageServer.startStreaming",
"title": "Start Stream logs into languageServer.port"
}
],
"views": {
"explorer": [{
"id": "fileExplorer",
"name": "Boom! Tree"
}]
},
"menus": {
"view/title": [{
"command": "fileExplorer.refreshFile",
"when": "view == fileExplorer",
"group": "navigation"
}]
},
"configuration": {
"title": "Boom! Party configuration",
"properties": {
"languageServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServer.trace.server": {
"scope": "window",
"type": "object",
"description": "Traces the communication between VS Code and the language server.",
"properties": {
"verbosity": {
"type": "string",
"description": "Controls the verbosity of the trace.",
"enum": [
"off",
"message",
"verbose"
],
"default": "off"
},
"format": {
"type": "string",
"description": "Controls the output format of the trace.",
"enum": [
"text",
"json"
],
"default": "text"
}
}
},
"languageServer.port": {
"type": "number",
"default": 7000,
"scope": "window",
"description": "The WebSocket port to stream LSP log data into."
}
}
},
"grammars": [{
"language": "lua",
"scopeName": "source.lua",
"path": "./syntaxes/lua.tmLanguage.json"
}]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/rimraf": "^2.0.2",
"@types/vscode": "^1.55.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"glob": "^7.1.6",
"mocha": "^8.3.2",
"typescript": "^4.2.4",
"vscode-test": "^1.5.2"
},
"optionalDependencies": {
"fsevents": "^2.2.0"
},
"dependencies": {
"jsonc-parser": "^2.3.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.7.1"
}
}