package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-settings-plugins",
  3. "description": "Plugins settings section with feature-owned tabs and configurable host-plane plugin cards",
  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/ui-settings-plugins"
  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. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "dsh": {
  33. "client": {
  34. "inject": [
  35. "@deepseek-ai/dsh-client-connection",
  36. "@deepseek-ai/dsh-client-locale",
  37. "@deepseek-ai/dsh-client-ui-settings",
  38. "@deepseek-ai/dsh-api-remotes"
  39. ],
  40. "platform": "web"
  41. }
  42. },
  43. "scripts": {
  44. "bundle": "tsdown",
  45. "watch": "tsdown --watch"
  46. },
  47. "license": "MIT",
  48. "peerDependencies": {
  49. "@deepseek-ai/cordis": "workspace:^",
  50. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  51. "@deepseek-ai/dsh-client-connection": "workspace:^",
  52. "@deepseek-ai/dsh-client-locale": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  54. "@deepseek-ai/dsh-invariants": "workspace:^",
  55. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^"
  56. },
  57. "devDependencies": {
  58. "@deepseek-ai/cordis": "workspace:^",
  59. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  60. "@deepseek-ai/dsh-client-connection": "workspace:^",
  61. "@deepseek-ai/dsh-client-locale": "workspace:^",
  62. "@deepseek-ai/dsh-client-store": "workspace:^",
  63. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  64. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  65. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  66. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  67. "@deepseek-ai/dsh-invariants": "workspace:^",
  68. "@types/react": "~18.3.1",
  69. "react": "^18.2.0",
  70. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^"
  71. },
  72. "files": [
  73. "lib/index.js",
  74. "lib/invariant.js",
  75. "lib/client.js",
  76. "lib/types/**/*.d.ts"
  77. ],
  78. "dependencies": {
  79. "clsx": "^2.0.0"
  80. }
  81. }