package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-rc.1",
  5. "publishConfig": {
  6. "access": "restricted"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "apps/web"
  12. },
  13. "type": "module",
  14. "exports": {
  15. "./dist/*": "./dist/*",
  16. "./package.json": "./package.json"
  17. },
  18. "files": [
  19. "dist"
  20. ],
  21. "scripts": {
  22. "build": "vite build",
  23. "dev": "vite",
  24. "watch": "vite build --watch"
  25. },
  26. "license": "BSD-3-Clause",
  27. "dependencies": {
  28. "@deepseek-ai/dsh-client-web": "workspace:^",
  29. "react": "^18.2.0",
  30. "react-dom": "^18.2.0"
  31. },
  32. "devDependencies": {
  33. "@deepseek-ai/cordis-plugin-group": "workspace:^",
  34. "@deepseek-ai/dsh-client-modules": "workspace:^",
  35. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  36. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  37. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  38. "@deepseek-ai/dsh-cmdline": "workspace:^",
  39. "@deepseek-ai/dsh-pwsh-local": "workspace:^",
  40. "@types/node": "^22.0.0",
  41. "@types/react": "~18.3.1",
  42. "@types/react-dom": "~18.3.0",
  43. "@vitejs/plugin-react": "^4.0.0",
  44. "playwright": "^1.49.0",
  45. "typescript": "^6.0.3",
  46. "vite": "^6.0.0",
  47. "vitest": "^4.1.8",
  48. "fflate": "^0.8.2"
  49. }
  50. }