package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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": ""
  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. "menus": {
  66. "view/title": [
  67. {
  68. "command": "claude-dev.plusButtonTapped",
  69. "group": "navigation",
  70. "when": "view == claude-dev.ClaudeDevProvider"
  71. },
  72. {
  73. "command": "claude-dev.popoutButtonTapped",
  74. "group": "navigation",
  75. "when": "view == claude-dev.ClaudeDevProvider"
  76. },
  77. {
  78. "command": "claude-dev.settingsButtonTapped",
  79. "group": "navigation",
  80. "when": "view == claude-dev.ClaudeDevProvider"
  81. }
  82. ]
  83. }
  84. },
  85. "scripts": {
  86. "vscode:prepublish": "npm run package",
  87. "compile": "npm run check-types && npm run lint && node esbuild.js",
  88. "watch": "npm-run-all -p watch:*",
  89. "watch:esbuild": "node esbuild.js --watch",
  90. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  91. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  92. "compile-tests": "tsc -p . --outDir out",
  93. "watch-tests": "tsc -p . -w --outDir out",
  94. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  95. "check-types": "tsc --noEmit",
  96. "lint": "eslint src --ext ts",
  97. "test": "vscode-test",
  98. "install:all": "npm install && cd webview-ui && npm install",
  99. "start:webview": "cd webview-ui && npm run start",
  100. "build:webview": "cd webview-ui && npm run build",
  101. "test:webview": "cd webview-ui && npm run test"
  102. },
  103. "devDependencies": {
  104. "@types/diff": "^5.2.1",
  105. "@types/mocha": "^10.0.7",
  106. "@types/node": "20.x",
  107. "@types/vscode": "^1.82.0",
  108. "@typescript-eslint/eslint-plugin": "^7.14.1",
  109. "@typescript-eslint/parser": "^7.11.0",
  110. "@vscode/test-cli": "^0.0.9",
  111. "@vscode/test-electron": "^2.4.0",
  112. "esbuild": "^0.21.5",
  113. "eslint": "^8.57.0",
  114. "npm-run-all": "^4.1.5",
  115. "typescript": "^5.4.5"
  116. },
  117. "dependencies": {
  118. "@anthropic-ai/sdk": "^0.24.3",
  119. "@vscode/codicons": "^0.0.36",
  120. "default-shell": "^2.2.0",
  121. "diff": "^5.2.0",
  122. "execa": "^9.3.0",
  123. "glob": "^10.4.3",
  124. "os-name": "^6.0.0",
  125. "p-wait-for": "^5.0.2",
  126. "serialize-error": "^11.0.3"
  127. }
  128. }