package.json 3.2 KB

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