package.json 3.3 KB

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