package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@deepseek-ai/dsh-client-web",
  3. "description": "Web boot kernel: static module table, Cordis loader, framework-free boot page, and UI-renderer handoff",
  4. "version": "0.1.3-alpha.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/web"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "license": "MIT",
  25. "devDependencies": {
  26. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  27. "@deepseek-ai/dsh-client-modules": "workspace:^",
  28. "@deepseek-ai/dsh-client-store": "workspace:^",
  29. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  30. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  31. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  32. "@types/react": "~18.3.1",
  33. "@types/react-dom": "~18.3.0",
  34. "@deepseek-ai/cordis": "workspace:^",
  35. "react": "^18.2.0",
  36. "react-dom": "^18.2.0",
  37. "typescript": "^6.0.3"
  38. },
  39. "peerDependencies": {
  40. "@deepseek-ai/cordis": "workspace:^"
  41. },
  42. "files": [
  43. "lib/index.js",
  44. "lib/**/*.css",
  45. "lib/types/**/*.d.ts"
  46. ]
  47. }