package.json 3.0 KB

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