package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.1-rc.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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "license": "MIT",
  29. "devDependencies": {
  30. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  31. "@deepseek-ai/dsh-client-modules": "workspace:^",
  32. "@deepseek-ai/dsh-client-store": "workspace:^",
  33. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  34. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  35. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  36. "@deepseek-ai/dsh-invariants": "workspace:^",
  37. "@types/react": "~18.3.1",
  38. "@types/react-dom": "~18.3.0",
  39. "@deepseek-ai/cordis": "workspace:^",
  40. "react": "^18.2.0",
  41. "react-dom": "^18.2.0",
  42. "typescript": "^6.0.3"
  43. },
  44. "peerDependencies": {
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/cordis": "workspace:^"
  47. },
  48. "files": [
  49. "lib/index.js",
  50. "lib/invariant.js",
  51. "lib/**/*.css",
  52. "lib/types/**/*.d.ts"
  53. ]
  54. }