1
0

package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@deepseek-ai/dsh-frontend",
  3. "description": "Web application entry: vite build over the @deepseek-ai/dsh-client-web shell library; dist/ served by apps/cli's dsh web",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "exports": {
  8. "./dist/*": "./dist/*",
  9. "./package.json": "./package.json"
  10. },
  11. "scripts": {
  12. "build": "vite build",
  13. "dev": "vite",
  14. "watch": "vite build --watch"
  15. },
  16. "license": "BSD-3-Clause",
  17. "dependencies": {
  18. "@deepseek-ai/dsh-client-web": "workspace:^",
  19. "react": "^18.2.0",
  20. "react-dom": "^18.2.0"
  21. },
  22. "devDependencies": {
  23. "@deepseek-ai/dsh-client-modules": "workspace:^",
  24. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  25. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  26. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  27. "@types/node": "^22.0.0",
  28. "@types/react": "~18.3.1",
  29. "@types/react-dom": "~18.3.0",
  30. "@vitejs/plugin-react": "^4.0.0",
  31. "playwright": "^1.49.0",
  32. "typescript": "^6.0.3",
  33. "vite": "^6.0.0",
  34. "vitest": "^4.1.8"
  35. }
  36. }