package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-schedule",
  3. "description": "Read-only active Schedule catalog in the Web Session header",
  4. "version": "0.1.5-alpha.1",
  5. "type": "module",
  6. "main": "lib/index.js",
  7. "types": "lib/types/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "types": "./lib/types/index.d.ts",
  11. "default": "./lib/index.js"
  12. },
  13. "./client": {
  14. "types": "./lib/types/client/index.d.ts",
  15. "default": "./lib/client.js"
  16. },
  17. "./src/*": "./src/*",
  18. "./package.json": "./package.json"
  19. },
  20. "dsh": {
  21. "client": {
  22. "inject": [
  23. "@deepseek-ai/dsh-client-locale",
  24. "@deepseek-ai/dsh-client-ui-conversation",
  25. "@deepseek-ai/dsh-client-ui-primitives"
  26. ],
  27. "platform": "web"
  28. }
  29. },
  30. "scripts": {
  31. "bundle": "tsdown",
  32. "watch": "tsdown --watch"
  33. },
  34. "license": "MIT",
  35. "repository": {
  36. "type": "git",
  37. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  38. "directory": "packages/client/ui-schedule"
  39. },
  40. "publishConfig": {
  41. "access": "public"
  42. },
  43. "peerDependencies": {
  44. "@deepseek-ai/cordis": "workspace:^"
  45. },
  46. "devDependencies": {
  47. "@deepseek-ai/dsh-api-session-controller": "workspace:^",
  48. "@deepseek-ai/dsh-client-locale": "workspace:^",
  49. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  50. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  51. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  52. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-session": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  55. "@deepseek-ai/dsh-schedule": "workspace:^",
  56. "@deepseek-ai/dsh-session": "workspace:^",
  57. "@testing-library/react": "^16.1.0",
  58. "@types/react": "~18.3.1",
  59. "@types/react-dom": "~18.3.0",
  60. "@deepseek-ai/cordis": "workspace:^",
  61. "react": "^18.2.0",
  62. "react-dom": "^18.2.0"
  63. },
  64. "files": [
  65. "lib/index.js",
  66. "lib/client.js",
  67. "lib/types/**/*.d.ts"
  68. ]
  69. }