|
4 | 4 | "description": "Robot Framework support for Visual Studio Code",
|
5 | 5 | "icon": "images/icon.png",
|
6 | 6 | "publisher": "d-biehl",
|
7 |
| - "version": "0.1.0-alpha.5", |
8 |
| - "enableProposedApi": true, |
| 7 | + "version": "0.1.0-alpha.5", |
9 | 8 | "repository": {
|
10 | 9 | "type": "git",
|
11 | 10 | "url": "https://github.com/d-biehl/robotcode.git"
|
12 | 11 | },
|
13 | 12 | "engines": {
|
14 |
| - "vscode": "^1.58.0" |
| 13 | + "vscode": "^1.59.0" |
15 | 14 | },
|
16 | 15 | "categories": [
|
17 | 16 | "Programming Languages",
|
|
259 | 258 | }
|
260 | 259 | }
|
261 | 260 | }
|
262 |
| - ], |
263 |
| - "commands": [ |
264 |
| - { |
265 |
| - "command": "robotcode.runSuite", |
266 |
| - "category": "RobotCode", |
267 |
| - "title": "Run Suite", |
268 |
| - "enablement": "resourceLangId == robotframework && resourceExtname == .robot || explorerResourceIsFolder", |
269 |
| - "icon": { |
270 |
| - "light": "resources/light/run_suite.svg", |
271 |
| - "dark": "resources/dark/run_suite.svg" |
272 |
| - } |
273 |
| - }, |
274 |
| - { |
275 |
| - "command": "robotcode.debugSuite", |
276 |
| - "category": "RobotCode", |
277 |
| - "title": "Debug Suite", |
278 |
| - "enablement": "resourceLangId == robotframework && resourceExtname == .robot || explorerResourceIsFolder", |
279 |
| - "icon": { |
280 |
| - "light": "resources/light/debug_suite.svg", |
281 |
| - "dark": "resources/dark/debug_suite.svg" |
282 |
| - } |
283 |
| - }, |
284 |
| - { |
285 |
| - "command": "robotcode.runTest", |
286 |
| - "category": "RobotCode", |
287 |
| - "title": "Run Test Case", |
288 |
| - "enablement": "resourceLangId == robotframework && resourceExtname == .robot", |
289 |
| - "icon": { |
290 |
| - "light": "resources/light/run_test.svg", |
291 |
| - "dark": "resources/dark/run_test.svg" |
292 |
| - } |
293 |
| - }, |
294 |
| - { |
295 |
| - "command": "robotcode.debugTest", |
296 |
| - "category": "RobotCode", |
297 |
| - "title": "Debug Test Case", |
298 |
| - "enablement": "resourceLangId == robotframework && resourceExtname == .robot", |
299 |
| - "icon": { |
300 |
| - "light": "resources/light/debug_test.svg", |
301 |
| - "dark": "resources/dark/debug_test.svg" |
302 |
| - } |
303 |
| - } |
304 |
| - ], |
305 |
| - "menus": { |
306 |
| - "editor/title/run": [ |
307 |
| - { |
308 |
| - "command": "robotcode.runTest", |
309 |
| - "group": "robotcode@1run@1", |
310 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot && robotCode.editor.inTest && !isInDiffEditor" |
311 |
| - }, |
312 |
| - { |
313 |
| - "command": "robotcode.debugTest", |
314 |
| - "group": "robotcode@2debug@1", |
315 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot && robotCode.editor.inTest && !isInDiffEditor" |
316 |
| - }, |
317 |
| - { |
318 |
| - "command": "robotcode.runSuite", |
319 |
| - "group": "robotcode@1run@2", |
320 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot && !isInDiffEditor" |
321 |
| - }, |
322 |
| - { |
323 |
| - "command": "robotcode.debugSuite", |
324 |
| - "group": "robotcode@2debug@2", |
325 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot && !isInDiffEditor" |
326 |
| - } |
327 |
| - ], |
328 |
| - "editor/context": [ |
329 |
| - { |
330 |
| - "command": "robotcode.runTest", |
331 |
| - "group": "robotcode@1run@1", |
332 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot && robotCode.editor.inTest && !isInDiffEditor" |
333 |
| - }, |
334 |
| - { |
335 |
| - "command": "robotcode.debugTest", |
336 |
| - "group": "robotcode@2debug@1", |
337 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot && robotCode.editor.inTest && !isInDiffEditor" |
338 |
| - }, |
339 |
| - { |
340 |
| - "command": "robotcode.runSuite", |
341 |
| - "group": "robotcode@1run@2", |
342 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot && !isInDiffEditor" |
343 |
| - }, |
344 |
| - { |
345 |
| - "command": "robotcode.debugSuite", |
346 |
| - "group": "robotcode@2debug@2", |
347 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot && !isInDiffEditor" |
348 |
| - } |
349 |
| - ], |
350 |
| - "explorer/context": [ |
351 |
| - { |
352 |
| - "command": "robotcode.runSuite", |
353 |
| - "group": "robotcode@1", |
354 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot || explorerResourceIsFolder" |
355 |
| - }, |
356 |
| - { |
357 |
| - "command": "robotcode.debugSuite", |
358 |
| - "group": "robotcode@2", |
359 |
| - "when": "resourceLangId == robotframework && resourceExtname == .robot || explorerResourceIsFolder" |
360 |
| - } |
361 |
| - ] |
362 |
| - }, |
| 261 | + ], |
363 | 262 | "breakpoints": [
|
364 | 263 | {
|
365 | 264 | "language": "robotframework"
|
|
492 | 391 | "pretest": "npm run compile && npm run lint",
|
493 | 392 | "lint": "eslint --ext .ts,.tsx,.js .",
|
494 | 393 | "lint-fix": "eslint --ext .ts,.tsx,.js --fix .",
|
495 |
| - "test": "node ./out/test/runTest.js", |
496 |
| - "download-api": "vscode-dts dev", |
497 |
| - "postdownload-api": "vscode-dts main", |
498 |
| - "postinstall": "npm run download-api" |
| 394 | + "test": "node ./out/test/runTest.js" |
499 | 395 | },
|
500 | 396 | "extensionDependencies": [
|
501 | 397 | "ms-python.python"
|
502 | 398 | ],
|
503 | 399 | "dependencies": {
|
504 | 400 | "open": "^8.2.1",
|
505 |
| - "vscode-debugadapter": "^1.47.0", |
506 |
| - "vscode-debugprotocol": "^1.47.0", |
| 401 | + "vscode-debugadapter": "^1.49.0", |
| 402 | + "vscode-debugprotocol": "^1.49.0", |
507 | 403 | "vscode-languageclient": "^7.0.0",
|
508 | 404 | "vscode-languageserver-protocol": "^3.16.0",
|
509 | 405 | "vscode-test-adapter-api": "^1.9.0",
|
510 | 406 | "vscode-test-adapter-util": "^0.7.1"
|
511 | 407 | },
|
512 | 408 | "devDependencies": {
|
513 | 409 | "@types/glob": "^7.1.4",
|
514 |
| - "@types/mocha": "^8.2.3", |
515 |
| - "@types/node": "^16.3.1", |
516 |
| - "@types/vscode": "^1.58.0", |
517 |
| - "@typescript-eslint/eslint-plugin": "^4.28.2", |
518 |
| - "@typescript-eslint/parser": "^4.28.2", |
519 |
| - "eslint": "^7.30.0", |
| 410 | + "@types/mocha": "^9.0.0", |
| 411 | + "@types/node": "^16.7.6", |
| 412 | + "@types/vscode": "^1.59.0", |
| 413 | + "@typescript-eslint/eslint-plugin": "^4.29.3", |
| 414 | + "@typescript-eslint/parser": "^4.29.3", |
| 415 | + "eslint": "^7.32.0", |
520 | 416 | "eslint-config-airbnb": "^18.2.1",
|
521 | 417 | "eslint-config-prettier": "^8.3.0",
|
522 | 418 | "eslint-config-standard": "^16.0.3",
|
523 | 419 | "eslint-config-standard-with-typescript": "20.0.0",
|
524 |
| - "eslint-plugin-import": "^2.23.4", |
| 420 | + "eslint-plugin-import": "^2.24.2", |
525 | 421 | "eslint-plugin-jsx-a11y": "^6.4.1",
|
526 | 422 | "eslint-plugin-node": "^11.1.0",
|
527 |
| - "eslint-plugin-prettier": "^3.4.0", |
| 423 | + "eslint-plugin-prettier": "^3.4.1", |
528 | 424 | "eslint-plugin-promise": "^5.1.0",
|
529 |
| - "eslint-plugin-react": "^7.24.0", |
| 425 | + "eslint-plugin-react": "^7.25.1", |
530 | 426 | "eslint-plugin-react-hooks": "^4.2.0",
|
531 | 427 | "glob": "^7.1.7",
|
532 |
| - "mocha": "^9.0.2", |
| 428 | + "mocha": "^9.1.1", |
533 | 429 | "prettier": "^2.3.2",
|
534 |
| - "ts-loader": "^9.2.3", |
535 |
| - "typescript": "^4.3.5", |
536 |
| - "vsce": "^1.95.1", |
537 |
| - "vscode-debugadapter-testsupport": "^1.47.0", |
538 |
| - "vscode-dts": "^0.3.1", |
539 |
| - "vscode-test": "^1.5.2", |
540 |
| - "webpack": "^5.44.0", |
541 |
| - "webpack-cli": "^4.7.2" |
| 430 | + "ts-loader": "^9.2.5", |
| 431 | + "typescript": "^4.4.2", |
| 432 | + "vsce": "^1.96.2", |
| 433 | + "vscode-debugadapter-testsupport": "^1.49.0", |
| 434 | + "vscode-test": "^1.6.1", |
| 435 | + "webpack": "^5.51.1", |
| 436 | + "webpack-cli": "^4.8.0" |
542 | 437 | }
|
543 | 438 | }
|
0 commit comments