package.json 3.7 KB

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