package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-settings",
  3. "description": "Settings domain base plugin: the settings-namespace scope service and the canonical settings slot-type contract",
  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"
  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-api-remotes"
  32. ],
  33. "platform": "web"
  34. }
  35. },
  36. "scripts": {
  37. "bundle": "tsdown",
  38. "watch": "tsdown --watch"
  39. },
  40. "license": "MIT",
  41. "peerDependencies": {
  42. "@deepseek-ai/cordis": "workspace:^"
  43. },
  44. "devDependencies": {
  45. "@deepseek-ai/cordis": "workspace:^",
  46. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  47. "@deepseek-ai/dsh-client-store": "workspace:^",
  48. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  49. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  50. "@deepseek-ai/dsh-settings": "workspace:^",
  51. "@types/react": "~18.3.1",
  52. "react": "^18.2.0",
  53. "@deepseek-ai/schemastery": "workspace:^",
  54. "@deepseek-ai/dsh-util-values": "workspace:^"
  55. },
  56. "files": [
  57. "lib/index.js",
  58. "lib/client.js",
  59. "lib/types/**/*.d.ts"
  60. ]
  61. }