package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "claude-dev",
  3. "displayName": "claude-dev",
  4. "description": "Autonomous junior engineer",
  5. "version": "0.0.1",
  6. "engines": {
  7. "vscode": "^1.82.0"
  8. },
  9. "categories": [
  10. "Other"
  11. ],
  12. "activationEvents": [],
  13. "main": "./dist/extension.js",
  14. "contributes": {
  15. "viewsContainers": {
  16. "activitybar": [
  17. {
  18. "id": "claude-dev-ActivityBar",
  19. "title": "Claude Dev",
  20. "icon": "assets/icon.png"
  21. }
  22. ]
  23. },
  24. "views": {
  25. "claude-dev-ActivityBar": [
  26. {
  27. "type": "webview",
  28. "id": "claude-dev.SidebarProvider",
  29. "name": ""
  30. }
  31. ]
  32. },
  33. "commands": [
  34. {
  35. "command": "claude-dev.menuButtonTapped",
  36. "title": "Text that will show when hovered",
  37. "icon": "$(clear-all)"
  38. }
  39. ],
  40. "menus": {
  41. "view/title": [
  42. {
  43. "command": "claude-dev.menuButtonTapped",
  44. "group": "navigation",
  45. "when": "view == claude-dev.SidebarProvider"
  46. }
  47. ]
  48. }
  49. },
  50. "scripts": {
  51. "vscode:prepublish": "npm run package",
  52. "compile": "npm run check-types && npm run lint && node esbuild.js",
  53. "watch": "npm-run-all -p watch:*",
  54. "watch:esbuild": "node esbuild.js --watch",
  55. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  56. "package": "npm run check-types && npm run lint && node esbuild.js --production",
  57. "compile-tests": "tsc -p . --outDir out",
  58. "watch-tests": "tsc -p . -w --outDir out",
  59. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  60. "check-types": "tsc --noEmit",
  61. "lint": "eslint src --ext ts",
  62. "test": "vscode-test",
  63. "install:all": "npm install && cd webview-ui && npm install",
  64. "start:webview": "cd webview-ui && npm run start",
  65. "build:webview": "cd webview-ui && npm run build",
  66. "test:webview": "cd webview-ui && npm run test"
  67. },
  68. "devDependencies": {
  69. "@types/mocha": "^10.0.7",
  70. "@types/node": "20.x",
  71. "@types/vscode": "^1.82.0",
  72. "@typescript-eslint/eslint-plugin": "^7.14.1",
  73. "@typescript-eslint/parser": "^7.11.0",
  74. "@vscode/test-cli": "^0.0.9",
  75. "@vscode/test-electron": "^2.4.0",
  76. "esbuild": "^0.21.5",
  77. "eslint": "^8.57.0",
  78. "npm-run-all": "^4.1.5",
  79. "typescript": "^5.4.5"
  80. }
  81. }