package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "name": "@roo-code/vscode-webview",
  3. "private": true,
  4. "type": "module",
  5. "scripts": {
  6. "lint": "eslint src --ext=ts,tsx --max-warnings=0",
  7. "check-types": "tsc",
  8. "test": "jest -w=40%",
  9. "format": "prettier --write src",
  10. "dev": "vite",
  11. "build": "tsc -b && vite build",
  12. "preview": "vite preview",
  13. "storybook": "storybook dev -p 6006",
  14. "build-storybook": "storybook build",
  15. "clean": "rimraf build tsconfig.tsbuildinfo .turbo"
  16. },
  17. "dependencies": {
  18. "@radix-ui/react-alert-dialog": "^1.1.6",
  19. "@radix-ui/react-checkbox": "^1.1.5",
  20. "@radix-ui/react-collapsible": "^1.1.3",
  21. "@radix-ui/react-dialog": "^1.1.6",
  22. "@radix-ui/react-dropdown-menu": "^2.1.5",
  23. "@radix-ui/react-icons": "^1.3.2",
  24. "@radix-ui/react-popover": "^1.1.6",
  25. "@radix-ui/react-portal": "^1.1.5",
  26. "@radix-ui/react-progress": "^1.1.2",
  27. "@radix-ui/react-select": "^2.1.6",
  28. "@radix-ui/react-separator": "^1.1.2",
  29. "@radix-ui/react-slider": "^1.2.3",
  30. "@radix-ui/react-slot": "^1.1.2",
  31. "@radix-ui/react-tooltip": "^1.1.8",
  32. "@tailwindcss/vite": "^4.0.0",
  33. "@tanstack/react-query": "^5.68.0",
  34. "@vscode/codicons": "^0.0.36",
  35. "@vscode/webview-ui-toolkit": "^1.4.0",
  36. "axios": "^1.7.4",
  37. "class-variance-authority": "^0.7.1",
  38. "clsx": "^2.1.1",
  39. "cmdk": "^1.0.0",
  40. "date-fns": "^4.1.0",
  41. "debounce": "^2.1.1",
  42. "fast-deep-equal": "^3.1.3",
  43. "fzf": "^0.5.2",
  44. "i18next": "^24.2.2",
  45. "i18next-http-backend": "^3.0.2",
  46. "knuth-shuffle-seeded": "^1.0.6",
  47. "lucide-react": "^0.510.0",
  48. "mermaid": "^11.4.1",
  49. "posthog-js": "^1.227.2",
  50. "pretty-bytes": "^6.1.1",
  51. "react": "^18.3.1",
  52. "react-dom": "^18.3.1",
  53. "react-i18next": "^15.4.1",
  54. "react-markdown": "^9.0.3",
  55. "react-remark": "^2.1.0",
  56. "react-textarea-autosize": "^8.5.3",
  57. "react-use": "^17.5.1",
  58. "react-virtuoso": "^4.7.13",
  59. "rehype-highlight": "^7.0.0",
  60. "remark-gfm": "^4.0.1",
  61. "remove-markdown": "^0.6.0",
  62. "shell-quote": "^1.8.2",
  63. "shiki": "^3.2.1",
  64. "source-map": "^0.7.4",
  65. "styled-components": "^6.1.13",
  66. "tailwind-merge": "^2.6.0",
  67. "tailwindcss": "^4.0.0",
  68. "tailwindcss-animate": "^1.0.7",
  69. "unist-util-visit": "^5.0.0",
  70. "vscode-material-icons": "^0.1.1",
  71. "use-sound": "^5.0.0",
  72. "vscrui": "^0.2.2",
  73. "zod": "^3.24.2"
  74. },
  75. "devDependencies": {
  76. "@jest/globals": "^29.7.0",
  77. "@roo-code/config-eslint": "workspace:^",
  78. "@roo-code/config-typescript": "workspace:^",
  79. "@storybook/addon-essentials": "^8.5.6",
  80. "@storybook/blocks": "^8.5.6",
  81. "@storybook/react": "^8.5.6",
  82. "@storybook/react-vite": "^8.5.6",
  83. "@testing-library/jest-dom": "^6.6.3",
  84. "@testing-library/react": "^16.2.0",
  85. "@testing-library/user-event": "^14.6.1",
  86. "@types/jest": "^27.5.2",
  87. "@types/node": "^18.0.0",
  88. "@types/react": "^18.3.18",
  89. "@types/react-dom": "^18.3.5",
  90. "@types/shell-quote": "^1.7.5",
  91. "@types/testing-library__jest-dom": "^5.14.5",
  92. "@types/vscode-webview": "^1.57.5",
  93. "@vitejs/plugin-react": "^4.3.4",
  94. "identity-obj-proxy": "^3.0.0",
  95. "jest": "^29.7.0",
  96. "jest-environment-jsdom": "^29.7.0",
  97. "jest-simple-dot-reporter": "^1.0.5",
  98. "storybook": "^8.5.6",
  99. "storybook-dark-mode": "^4.0.2",
  100. "ts-jest": "^29.2.5",
  101. "typescript": "5.8.3",
  102. "vite": "6.3.5"
  103. }
  104. }