package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.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/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. "./client": {
  22. "types": "./lib/types/client/index.d.ts",
  23. "default": "./lib/client.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "dsh": {
  29. "client": {
  30. "inject": [
  31. "@deepseek-ai/dsh-client-connection",
  32. "@deepseek-ai/dsh-client-locale",
  33. "@deepseek-ai/dsh-client-ui-renderer",
  34. "@deepseek-ai/dsh-client-ui-settings",
  35. "@deepseek-ai/dsh-api-remotes"
  36. ],
  37. "platform": "web",
  38. "immediately": true
  39. }
  40. },
  41. "license": "MIT",
  42. "peerDependencies": {
  43. "@deepseek-ai/cordis": "workspace:^"
  44. },
  45. "devDependencies": {
  46. "@deepseek-ai/cordis": "workspace:^",
  47. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  48. "@deepseek-ai/dsh-client-connection": "workspace:^",
  49. "@deepseek-ai/dsh-client-locale": "workspace:^",
  50. "@deepseek-ai/dsh-client-store": "workspace:^",
  51. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  52. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-renderer": "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. "@types/react": "~18.3.1",
  58. "react": "^18.2.0",
  59. "@deepseek-ai/dsh-settings": "workspace:^"
  60. },
  61. "files": [
  62. "lib/index.js",
  63. "lib/client.js",
  64. "lib/styles",
  65. "lib/types/**/*.d.ts"
  66. ],
  67. "scripts": {
  68. "bundle": "tsdown",
  69. "watch": "tsdown --watch"
  70. },
  71. "dependencies": {
  72. "clsx": "^2.0.0",
  73. "@deepseek-ai/schemastery": "workspace:^"
  74. }
  75. }