package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-theme",
  3. "description": "Theme plugin: Host bootstrap for the pre-plugin palette; DOM-free ThemeRuntime for light/dark/system state; --dsw-* token styles and Appearance settings row",
  4. "version": "0.1.0-rc.6",
  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/ui-theme"
  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. "./client": {
  26. "types": "./lib/types/client/index.d.ts",
  27. "default": "./lib/client.js"
  28. },
  29. "./styles/*": "./lib/styles/*",
  30. "./src/*": "./src/*",
  31. "./package.json": "./package.json"
  32. },
  33. "dsh": {
  34. "client": {
  35. "inject": [
  36. "@deepseek-ai/dsh-client-connection",
  37. "@deepseek-ai/dsh-client-runtime",
  38. "@deepseek-ai/dsh-client-locale",
  39. "@deepseek-ai/dsh-client-ui-settings",
  40. "@deepseek-ai/dsh-api-remotes"
  41. ],
  42. "platform": "web",
  43. "immediately": true
  44. }
  45. },
  46. "license": "MIT",
  47. "peerDependencies": {
  48. "@deepseek-ai/cordis": "workspace:^",
  49. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  50. "@deepseek-ai/dsh-client-connection": "workspace:^",
  51. "@deepseek-ai/dsh-client-locale": "workspace:^",
  52. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  55. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  56. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  57. "@deepseek-ai/dsh-invariants": "workspace:^",
  58. "react": "^18.2.0"
  59. },
  60. "devDependencies": {
  61. "@deepseek-ai/cordis": "workspace:^",
  62. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  63. "@deepseek-ai/dsh-client-locale": "workspace:^",
  64. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  65. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  66. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  67. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  68. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  69. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  70. "@deepseek-ai/dsh-invariants": "workspace:^",
  71. "@types/react": "~18.3.1",
  72. "react": "^18.2.0"
  73. },
  74. "files": [
  75. "lib/index.js",
  76. "lib/invariant.js",
  77. "lib/client.js",
  78. "lib/styles",
  79. "lib/types/**/*.d.ts"
  80. ],
  81. "scripts": {
  82. "bundle": "tsdown",
  83. "watch": "tsdown --watch"
  84. },
  85. "dependencies": {
  86. "@deepseek-ai/dsh-settings": "workspace:^",
  87. "clsx": "^2.0.0",
  88. "@deepseek-ai/schemastery": "workspace:^"
  89. }
  90. }