package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. "install:all": "npm install && cd webview-ui && npm install",
  70. "start:webview": "cd webview-ui && npm run start",
  71. "build:webview": "cd webview-ui && npm run build",
  72. "test:webview": "cd webview-ui && npm run test"
  73. },
  74. "devDependencies": {
  75. "@types/mocha": "^10.0.7",
  76. "@types/node": "20.x",
  77. "@types/vscode": "^1.82.0",
  78. "@types/vscode-webview": "^1.57.5",
  79. "@typescript-eslint/eslint-plugin": "^7.14.1",
  80. "@typescript-eslint/parser": "^7.11.0",
  81. "@vscode/test-cli": "^0.0.9",
  82. "@vscode/test-electron": "^2.4.0",
  83. "esbuild": "^0.21.5",
  84. "eslint": "^8.57.0",
  85. "npm-run-all": "^4.1.5",
  86. "typescript": "^5.4.5"
  87. },
  88. "dependencies": {
  89. "@vscode/webview-ui-toolkit": "^1.4.0"
  90. }
  91. }