package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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": "claude-dev-ActivityBar",
  19. "title": "Claude Dev",
  20. "icon": "$(robot)"
  21. }
  22. ]
  23. },
  24. "views": {
  25. "claude-dev-ActivityBar": [
  26. {
  27. "type": "webview",
  28. "id": "claude-dev.SidebarProvider",
  29. "name": ""
  30. }
  31. ]
  32. },
  33. "commands": [
  34. {
  35. "command": "claude-dev.plusButtonTapped",
  36. "title": "New Task",
  37. "icon": "$(add)"
  38. },
  39. {
  40. "command": "claude-dev.settingsButtonTapped",
  41. "title": "Settings",
  42. "icon": "$(settings-gear)"
  43. }
  44. ],
  45. "menus": {
  46. "view/title": [
  47. {
  48. "command": "claude-dev.plusButtonTapped",
  49. "group": "navigation",
  50. "when": "view == claude-dev.SidebarProvider"
  51. },
  52. {
  53. "command": "claude-dev.settingsButtonTapped",
  54. "group": "navigation",
  55. "when": "view == claude-dev.SidebarProvider"
  56. }
  57. ]
  58. }
  59. },
  60. "scripts": {
  61. "vscode:prepublish": "npm run package",
  62. "compile": "npm run check-types && npm run lint && node esbuild.js",
  63. "watch": "npm-run-all -p watch:*",
  64. "watch:esbuild": "node esbuild.js --watch",
  65. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  66. "package": "npm run check-types && npm run lint && node esbuild.js --production",
  67. "compile-tests": "tsc -p . --outDir out",
  68. "watch-tests": "tsc -p . -w --outDir out",
  69. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  70. "check-types": "tsc --noEmit",
  71. "lint": "eslint src --ext ts",
  72. "test": "vscode-test",
  73. "install:all": "npm install && cd webview-ui && npm install",
  74. "start:webview": "cd webview-ui && npm run start",
  75. "build:webview": "cd webview-ui && npm run build",
  76. "test:webview": "cd webview-ui && npm run test"
  77. },
  78. "devDependencies": {
  79. "@types/diff": "^5.2.1",
  80. "@types/mocha": "^10.0.7",
  81. "@types/node": "20.x",
  82. "@types/vscode": "^1.82.0",
  83. "@typescript-eslint/eslint-plugin": "^7.14.1",
  84. "@typescript-eslint/parser": "^7.11.0",
  85. "@vscode/test-cli": "^0.0.9",
  86. "@vscode/test-electron": "^2.4.0",
  87. "esbuild": "^0.21.5",
  88. "eslint": "^8.57.0",
  89. "npm-run-all": "^4.1.5",
  90. "typescript": "^5.4.5"
  91. },
  92. "dependencies": {
  93. "@anthropic-ai/sdk": "^0.24.3",
  94. "@vscode/codicons": "^0.0.36",
  95. "default-shell": "^2.2.0",
  96. "diff": "^5.2.0",
  97. "execa": "^9.3.0",
  98. "glob": "^10.4.3",
  99. "os-name": "^6.0.0",
  100. "p-wait-for": "^5.0.2",
  101. "serialize-error": "^11.0.3"
  102. }
  103. }