package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "name": "itk",
  3. "publisher": "ItkAcademyDevGroup",
  4. "displayName": "ITK Academy CodeRun",
  5. "description": "ITK Academy extension to support codeRun tasks",
  6. "version": "0.3.2",
  7. "icon": "resources/image.png",
  8. "engines": {
  9. "vscode": "^1.96.0"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://git.itk.academy/itk.academy/itk-extension.git"
  14. },
  15. "categories": [
  16. "Other"
  17. ],
  18. "activationEvents": [
  19. "*"
  20. ],
  21. "main": "./extension.js",
  22. "contributes": {
  23. "menus": {
  24. "editor/context": [
  25. {
  26. "command": "itk.closeAllTabs",
  27. "when": "editorHasOpenFiles"
  28. }
  29. ]
  30. },
  31. "commands": [
  32. {
  33. "command": "itk.closeAllTabs",
  34. "title": "ITK Close All Tabs"
  35. },
  36. {
  37. "command": "itk.getTabs",
  38. "title": "ITK Get Tabs"
  39. },
  40. {
  41. "command": "itk.openUrlInBrowser",
  42. "title": "ITK Open Url in Browser"
  43. },
  44. {
  45. "command": "itk.openTabs",
  46. "title": "ITK Open Tabs"
  47. },
  48. {
  49. "command": "itk.openWelcomeFrame",
  50. "title": "Open ITK Welcome Frame"
  51. },
  52. {
  53. "command": "itk.openWelcome",
  54. "title": "Open ITK Welcome"
  55. },
  56. {
  57. "command": "itk.openTests",
  58. "title": "Open ITK Test"
  59. }
  60. ],
  61. "views": {
  62. "itk": [
  63. {
  64. "id": "itk.mainView",
  65. "name": "Documentation"
  66. },
  67. {
  68. "id": "itk.runView",
  69. "name": "tests"
  70. }
  71. ]
  72. },
  73. "viewsContainers": {
  74. "activitybar": [
  75. {
  76. "id": "itk",
  77. "title": "ITK Academy",
  78. "icon": "resources/itk-icon.svg"
  79. }
  80. ]
  81. }
  82. },
  83. "scripts": {
  84. "lint": "eslint .",
  85. "pretest": "npm run lint",
  86. "test": "vscode-test"
  87. },
  88. "devDependencies": {
  89. "@types/mocha": "^10.0.10",
  90. "@types/node": "20.x",
  91. "@types/vscode": "^1.96.0",
  92. "@vscode/test-cli": "^0.0.10",
  93. "@vscode/test-electron": "^2.4.1",
  94. "eslint": "^9.19.0"
  95. },
  96. "dependencies": {},
  97. "__metadata": {
  98. "isApplicationScoped": false,
  99. "installedTimestamp": 1739814542104,
  100. "pinned": true,
  101. "source": "vsix",
  102. "size": 31909
  103. }
  104. }