package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. {
  2. "name": "claude-dev",
  3. "displayName": "Claude Dev",
  4. "description": "Autonomous software engineer right in your IDE, capable of reading/writing files, executing commands, and more with your permission every step of the way.",
  5. "version": "1.0.0",
  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. "files": [
  32. "dist/**/*"
  33. ],
  34. "contributes": {
  35. "viewsContainers": {
  36. "activitybar": [
  37. {
  38. "id": "claude-dev-ActivityBar",
  39. "title": "Claude Dev",
  40. "icon": "$(robot)"
  41. }
  42. ]
  43. },
  44. "views": {
  45. "claude-dev-ActivityBar": [
  46. {
  47. "type": "webview",
  48. "id": "claude-dev.ClaudeDevProvider",
  49. "name": ""
  50. }
  51. ]
  52. },
  53. "commands": [
  54. {
  55. "command": "claude-dev.plusButtonTapped",
  56. "title": "New Task",
  57. "icon": "$(add)"
  58. },
  59. {
  60. "command": "claude-dev.popoutButtonTapped",
  61. "title": "Open in Editor",
  62. "icon": "$(link-external)"
  63. },
  64. {
  65. "command": "claude-dev.settingsButtonTapped",
  66. "title": "Settings",
  67. "icon": "$(settings-gear)"
  68. },
  69. {
  70. "command": "claude-dev.openInNewTab",
  71. "title": "Open In New Tab",
  72. "category": "Claude Dev"
  73. }
  74. ],
  75. "menus": {
  76. "view/title": [
  77. {
  78. "command": "claude-dev.plusButtonTapped",
  79. "group": "navigation",
  80. "when": "view == claude-dev.ClaudeDevProvider"
  81. },
  82. {
  83. "command": "claude-dev.popoutButtonTapped",
  84. "group": "navigation",
  85. "when": "view == claude-dev.ClaudeDevProvider"
  86. },
  87. {
  88. "command": "claude-dev.settingsButtonTapped",
  89. "group": "navigation",
  90. "when": "view == claude-dev.ClaudeDevProvider"
  91. }
  92. ]
  93. }
  94. },
  95. "scripts": {
  96. "vscode:prepublish": "npm run package",
  97. "compile": "npm run check-types && npm run lint && node esbuild.js",
  98. "watch": "npm-run-all -p watch:*",
  99. "watch:esbuild": "node esbuild.js --watch",
  100. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  101. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  102. "compile-tests": "tsc -p . --outDir out",
  103. "watch-tests": "tsc -p . -w --outDir out",
  104. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  105. "check-types": "tsc --noEmit",
  106. "lint": "eslint src --ext ts",
  107. "test": "vscode-test",
  108. "install:all": "npm install && cd webview-ui && npm install",
  109. "start:webview": "cd webview-ui && npm run start",
  110. "build:webview": "cd webview-ui && npm run build",
  111. "test:webview": "cd webview-ui && npm run test"
  112. },
  113. "devDependencies": {
  114. "@types/diff": "^5.2.1",
  115. "@types/mocha": "^10.0.7",
  116. "@types/node": "20.x",
  117. "@types/vscode": "^1.82.0",
  118. "@typescript-eslint/eslint-plugin": "^7.14.1",
  119. "@typescript-eslint/parser": "^7.11.0",
  120. "@vscode/test-cli": "^0.0.9",
  121. "@vscode/test-electron": "^2.4.0",
  122. "esbuild": "^0.21.5",
  123. "eslint": "^8.57.0",
  124. "npm-run-all": "^4.1.5",
  125. "typescript": "^5.4.5"
  126. },
  127. "dependencies": {
  128. "@anthropic-ai/sdk": "^0.24.3",
  129. "@vscode/codicons": "^0.0.36",
  130. "default-shell": "^2.2.0",
  131. "diff": "^5.2.0",
  132. "execa": "^9.3.0",
  133. "globby": "^14.0.2",
  134. "os-name": "^6.0.0",
  135. "p-wait-for": "^5.0.2",
  136. "serialize-error": "^11.0.3",
  137. "tree-sitter-wasms": "^0.1.11",
  138. "web-tree-sitter": "^0.22.6"
  139. }
  140. }