-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
338 lines (338 loc) · 9.24 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
{
"name": "opa",
"icon": "logo.png",
"displayName": "Open Policy Agent",
"repository": {
"type": "git",
"url": "https://github.com/open-policy-agent/vscode-opa.git"
},
"description": "Develop, test, debug, and analyze policies for the Open Policy Agent project.",
"version": "0.18.0",
"publisher": "tsandall",
"engines": {
"vscode": "^1.95.0"
},
"activationEvents": [
"onLanguage:rego",
"onDebugResolve:opa-debug",
"onDebugDynamicConfigurations:opa-debug"
],
"categories": [
"Programming Languages",
"Linters",
"Testing",
"Debuggers"
],
"keywords": [
"open policy agent",
"opa",
"rego",
"policy",
"regal"
],
"main": "./out/extension",
"contributes": {
"menus": {
"editor/title/run": [
{
"command": "opa.debug.debugWorkspace",
"when": "resourceLangId == rego",
"group": "navigation@1"
}
],
"commandPalette": [
{
"command": "opa.debug.debugWorkspace",
"when": "resourceLangId == rego"
}
]
},
"commands": [
{
"command": "opa.check.file",
"title": "OPA: Check File Syntax"
},
{
"command": "opa.eval.package",
"title": "OPA: Evaluate Package"
},
{
"command": "opa.eval.selection",
"title": "OPA: Evaluate Selection"
},
{
"command": "opa.eval.coverage",
"title": "OPA: Toggle Evaluation Coverage"
},
{
"command": "opa.test.workspace",
"title": "OPA: Test Workspace"
},
{
"command": "opa.test.coverage.workspace",
"title": "OPA: Toggle Workspace Coverage"
},
{
"command": "opa.trace.selection",
"title": "OPA: Trace Selection"
},
{
"command": "opa.profile.selection",
"title": "OPA: Profile Selection"
},
{
"command": "opa.partial.selection",
"title": "OPA: Partial Evaluation: Selection"
},
{
"command": "opa.prompts.clear",
"title": "OPA: Clear Dismissed Prompts"
},
{
"command": "opa.debug.debugWorkspace",
"title": "Debug Workspace",
"category": "OPA Debug",
"enablement": "!inDebugMode",
"icon": "$(debug-alt)"
}
],
"configuration": {
"type": "object",
"title": "OPA Configuration",
"properties": {
"opa.path": {
"type": [
"string",
"null"
],
"default": null,
"deprecationMessage": "Please use opa.dependency_paths.opa instead.",
"description": "Path of the OPA executable. Defaults to null."
},
"opa.dependency_paths.opa": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to OPA's binary. Defaults to null."
},
"opa.dependency_paths.regal": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to Regal's binary on disk. Defaults to null."
},
"opa.checkOnSave": {
"type": [
"boolean"
],
"default": false,
"description": "Run OPA check on save. Defaults to false."
},
"opa.roots": {
"type": [
"array"
],
"default": [
"${workspaceFolder}"
],
"description": "List of paths to load as bundles for policy and data. Defaults to [\"${workspaceFolder}\"]."
},
"opa.bundleMode": {
"type": [
"boolean"
],
"default": true,
"description": "Enable treating the workspace as a bundle."
},
"opa.schema": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to the schema file or directory. Defaults to null. If null, schema evaluation is disabled."
},
"opa.strictMode": {
"type": [
"boolean"
],
"default": false,
"description": "Enable strict-mode for the \"OPA: Check File Syntax\" command (OPA check)."
},
"opa.languageServers": {
"type": [
"array"
],
"default": null,
"description": "Enable the specified Rego and OPA related language servers. Supports: ['regal'], Default: []."
},
"opa.env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"default": {},
"description": "Environment variables passed to the process running OPA."
},
"opa.formatter": {
"type": [
"string"
],
"default": "opa-fmt",
"description": "The formatter to use for Rego. Supports: ['opa-fmt', 'opa-fmt-rego-v1', 'regal-fix']."
}
}
},
"languages": [
{
"id": "rego",
"aliases": [
"Rego",
"rego"
],
"extensions": [
".rego"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "rego",
"scopeName": "source.rego",
"path": "./syntaxes/Rego.tmLanguage"
},
{
"scopeName": "markdown.rego.codeblock",
"path": "./syntaxes/markdown-inject.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.rego": "rego"
}
}
],
"breakpoints": [
{
"language": "rego"
}
],
"debuggers": [
{
"type": "opa-debug",
"label": "OPA Debug",
"languages": [
"rego"
],
"configurationAttributes": {
"launch": {
"properties": {
"command": {
"type": "string",
"description": "The OPA command to run. E.g. 'eval', 'test'.",
"default": "eval"
},
"query": {
"type": "string",
"default": "data"
},
"dataPaths": {
"type": "array",
"items": {
"type": "string"
}
},
"bundlePaths": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of paths to load as bundles for policy and data. If not set, defaults to the value configured in 'opa.roots'. Can be set to the empty array [] to disable loading of bundles.",
"default": [
"${workspaceFolder}"
]
},
"input": {
"type": "string"
},
"inputPath": {
"type": "string"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": true
},
"stopOnFail": {
"type": "boolean",
"description": "Automatically stop on 'Fail' operations.",
"default": false
},
"stopOnResult": {
"type": "boolean",
"description": "Automatically stop when done.",
"default": true
},
"trace": {
"type": "boolean",
"description": "Enable logging of the Debug Adapter Protocol.",
"default": true
},
"enablePrint": {
"type": "boolean",
"description": "Enable print statements.",
"default": true
},
"logLevel": {
"type": "string",
"description": "Set the log level for log messages printed to the debug console. One of: 'debug', 'info', 'warn', 'error'. If not set, no log messages are printed."
},
"ruleIndexing": {
"type": "boolean",
"description": "Enable rule indexing.",
"default": false
}
}
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint ."
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/command-exists": "^1.2.3",
"@types/mocha": "10.0.9",
"@types/node": "22.9.0",
"@types/semver": "^7.5.8",
"@types/vscode": "1.95.0",
"cspell": "^8.16.0",
"dprint": "^0.47.5",
"eslint": "^9.15.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"@vscode/vsce": "^3.2.1"
},
"dependencies": {
"@fohlen/github-release-downloader": "^1.0.0",
"command-exists": "^1.2.9",
"semver": "^7.6.3",
"vscode-languageclient": "^9.0.1"
},
"__metadata": {
"id": "ab758a0c-5cb5-417e-99bf-12a6e16bb148",
"publisherDisplayName": "Torin Sandall",
"publisherId": "4052f3dc-ff54-4c3b-9ad2-44e7ac5b9f4d"
}
}