package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "claude-dev",
  3. "displayName": "claude-dev",
  4. "description": "Autonomous junior engineer",
  5. "version": "0.0.1",
  6. "engines": {
  7. "vscode": "^1.82.0"
  8. },
  9. "categories": [
  10. "Other"
  11. ],
  12. "activationEvents": [],
  13. "main": "./dist/extension.js",
  14. "contributes": {
  15. "viewsContainers": {
  16. "activitybar": [
  17. {
  18. "id": "custom-activitybar",
  19. "title": "VSCode Extension",
  20. "icon": "assets/logo_bito.svg"
  21. }
  22. ]
  23. },
  24. "views": {
  25. "custom-activitybar": [
  26. {
  27. "type": "webview",
  28. "id": "vscodeSidebar.openview",
  29. "name": "View",
  30. "contextualTitle": "View"
  31. }
  32. ]
  33. },
  34. "commands": [
  35. {
  36. "command": "vscodeSidebar.openview",
  37. "title": "Sidebar View"
  38. },
  39. {
  40. "command": "vscodeSidebar.menu.view",
  41. "category": "vscode-extension-sidebar-html",
  42. "title": "Sample WebView in VS Code Sidebar",
  43. "icon": "$(clear-all)"
  44. }
  45. ],
  46. "menus": {
  47. "view/title": [
  48. {
  49. "command": "vscodeSidebar.menu.view",
  50. "group": "navigation",
  51. "when": "view == vscodeSidebar.openview"
  52. }
  53. ]
  54. }
  55. },
  56. "scripts": {
  57. "vscode:prepublish": "npm run package",
  58. "compile": "npm run check-types && npm run lint && node esbuild.js",
  59. "watch": "npm-run-all -p watch:*",
  60. "watch:esbuild": "node esbuild.js --watch",
  61. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  62. "package": "npm run check-types && npm run lint && node esbuild.js --production",
  63. "compile-tests": "tsc -p . --outDir out",
  64. "watch-tests": "tsc -p . -w --outDir out",
  65. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  66. "check-types": "tsc --noEmit",
  67. "lint": "eslint src --ext ts",
  68. "test": "vscode-test"
  69. },
  70. "devDependencies": {
  71. "@types/mocha": "^10.0.7",
  72. "@types/node": "20.x",
  73. "@types/vscode": "^1.82.0",
  74. "@types/vscode-webview": "^1.57.5",
  75. "@typescript-eslint/eslint-plugin": "^7.14.1",
  76. "@typescript-eslint/parser": "^7.11.0",
  77. "@vscode/test-cli": "^0.0.9",
  78. "@vscode/test-electron": "^2.4.0",
  79. "esbuild": "^0.21.5",
  80. "eslint": "^8.57.0",
  81. "npm-run-all": "^4.1.5",
  82. "typescript": "^5.4.5"
  83. },
  84. "dependencies": {
  85. "@vscode/webview-ui-toolkit": "^1.4.0"
  86. }
  87. }