package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.3-alpha.1",
  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. "./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-locale",
  32. "@deepseek-ai/dsh-client-ui-settings",
  33. "@deepseek-ai/dsh-api-remotes"
  34. ],
  35. "platform": "web"
  36. }
  37. },
  38. "scripts": {
  39. "bundle": "tsdown",
  40. "watch": "tsdown --watch"
  41. },
  42. "license": "MIT",
  43. "peerDependencies": {
  44. "@deepseek-ai/cordis": "workspace:^"
  45. },
  46. "devDependencies": {
  47. "@deepseek-ai/cordis": "workspace:^",
  48. "@deepseek-ai/dsh-api-remotes": "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-settings": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  55. "@types/react": "~18.3.1",
  56. "react": "^18.2.0",
  57. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^"
  58. },
  59. "files": [
  60. "lib/index.js",
  61. "lib/client.js",
  62. "lib/types/**/*.d.ts"
  63. ],
  64. "dependencies": {
  65. "clsx": "^2.0.0"
  66. }
  67. }