package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. {
  2. "name": "claude-dev",
  3. "displayName": "Claude Dev",
  4. "description": "Autonomous software engineer right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
  5. "version": "1.0.86",
  6. "icon": "icon.png",
  7. "engines": {
  8. "vscode": "^1.84.0"
  9. },
  10. "author": {
  11. "name": "Saoud Rizwan"
  12. },
  13. "license": "MIT",
  14. "publisher": "saoudrizwan",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/saoudrizwan/claude-dev"
  18. },
  19. "categories": [
  20. "AI"
  21. ],
  22. "keywords": [
  23. "AI",
  24. "Claude",
  25. "agentic",
  26. "productivity",
  27. "automation"
  28. ],
  29. "activationEvents": [],
  30. "main": "./dist/extension.js",
  31. "contributes": {
  32. "viewsContainers": {
  33. "activitybar": [
  34. {
  35. "id": "claude-dev-ActivityBar",
  36. "title": "Claude Dev",
  37. "icon": "$(robot)"
  38. }
  39. ]
  40. },
  41. "views": {
  42. "claude-dev-ActivityBar": [
  43. {
  44. "type": "webview",
  45. "id": "claude-dev.SidebarProvider",
  46. "name": ""
  47. }
  48. ]
  49. },
  50. "commands": [
  51. {
  52. "command": "claude-dev.plusButtonTapped",
  53. "title": "New Task",
  54. "icon": "$(add)"
  55. },
  56. {
  57. "command": "claude-dev.popoutButtonTapped",
  58. "title": "Open in Editor",
  59. "icon": "$(link-external)"
  60. },
  61. {
  62. "command": "claude-dev.settingsButtonTapped",
  63. "title": "Settings",
  64. "icon": "$(settings-gear)"
  65. },
  66. {
  67. "command": "claude-dev.openInNewTab",
  68. "title": "Open In New Tab",
  69. "category": "Claude Dev"
  70. }
  71. ],
  72. "menus": {
  73. "view/title": [
  74. {
  75. "command": "claude-dev.plusButtonTapped",
  76. "group": "navigation",
  77. "when": "view == claude-dev.SidebarProvider"
  78. },
  79. {
  80. "command": "claude-dev.popoutButtonTapped",
  81. "group": "navigation",
  82. "when": "view == claude-dev.SidebarProvider"
  83. },
  84. {
  85. "command": "claude-dev.settingsButtonTapped",
  86. "group": "navigation",
  87. "when": "view == claude-dev.SidebarProvider"
  88. }
  89. ]
  90. }
  91. },
  92. "scripts": {
  93. "vscode:prepublish": "npm run package",
  94. "compile": "npm run check-types && npm run lint && node esbuild.js",
  95. "watch": "npm-run-all -p watch:*",
  96. "watch:esbuild": "node esbuild.js --watch",
  97. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  98. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  99. "compile-tests": "tsc -p . --outDir out",
  100. "watch-tests": "tsc -p . -w --outDir out",
  101. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  102. "check-types": "tsc --noEmit",
  103. "lint": "eslint src --ext ts",
  104. "test": "vscode-test",
  105. "install:all": "npm install && cd webview-ui && npm install",
  106. "start:webview": "cd webview-ui && npm run start",
  107. "build:webview": "cd webview-ui && npm run build",
  108. "test:webview": "cd webview-ui && npm run test",
  109. "upver": "tsx scripts/update-version.ts"
  110. },
  111. "devDependencies": {
  112. "@types/diff": "^5.2.1",
  113. "@types/mocha": "^10.0.7",
  114. "@types/node": "20.x",
  115. "@types/vscode": "^1.82.0",
  116. "@typescript-eslint/eslint-plugin": "^7.14.1",
  117. "@typescript-eslint/parser": "^7.11.0",
  118. "@vscode/test-cli": "^0.0.9",
  119. "@vscode/test-electron": "^2.4.0",
  120. "esbuild": "^0.21.5",
  121. "eslint": "^8.57.0",
  122. "npm-run-all": "^4.1.5",
  123. "typescript": "^5.4.5"
  124. },
  125. "dependencies": {
  126. "@anthropic-ai/bedrock-sdk": "^0.10.2",
  127. "@anthropic-ai/sdk": "^0.24.3",
  128. "@vscode/codicons": "^0.0.36",
  129. "default-shell": "^2.2.0",
  130. "diff": "^5.2.0",
  131. "execa": "^9.3.0",
  132. "globby": "^14.0.2",
  133. "openai": "^4.54.0",
  134. "os-name": "^6.0.0",
  135. "p-wait-for": "^5.0.2",
  136. "serialize-error": "^11.0.3",
  137. "tree-kill": "^1.2.2",
  138. "tree-sitter-wasms": "^0.1.11",
  139. "web-tree-sitter": "^0.22.6"
  140. }
  141. }