package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@deepseek-ai/dsh-api-settings-controller",
  3. "description": "Remote owner for the configuration surfaces over the settings-domain seams",
  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/api/settings-controller"
  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. "./types": {
  22. "types": "./lib/types/types.d.ts",
  23. "default": "./lib/types/types.js"
  24. },
  25. "./typert": {
  26. "types": "./lib/typert.host.d.ts",
  27. "default": "./lib/typert.host.js"
  28. },
  29. "./remote": {
  30. "types": "./lib/typert.remote-client.d.ts",
  31. "default": "./lib/typert.remote-client.js"
  32. },
  33. "./src/*": "./src/*",
  34. "./package.json": "./package.json"
  35. },
  36. "files": [
  37. "lib/index.js",
  38. "lib/types/**/*.js",
  39. "lib/types/**/*.d.ts",
  40. "lib/typert.host.js",
  41. "lib/typert.host.d.ts",
  42. "lib/typert.remote-client.js",
  43. "lib/typert.remote-client.d.ts"
  44. ],
  45. "license": "MIT",
  46. "dependencies": {
  47. "@deepseek-ai/schemastery": "workspace:^",
  48. "zod": "^4.4.3"
  49. },
  50. "peerDependencies": {
  51. "@deepseek-ai/cordis": "workspace:^",
  52. "@deepseek-ai/dsh-agent-presets": "workspace:^",
  53. "@deepseek-ai/dsh-credentials": "workspace:^",
  54. "@deepseek-ai/dsh-native-command": "workspace:^",
  55. "@deepseek-ai/dsh-session": "workspace:^",
  56. "@deepseek-ai/dsh-settings": "workspace:^",
  57. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  58. },
  59. "devDependencies": {
  60. "@deepseek-ai/cordis": "workspace:^",
  61. "@deepseek-ai/dsh-agent-presets": "workspace:^",
  62. "@deepseek-ai/dsh-credentials": "workspace:^",
  63. "@deepseek-ai/dsh-native-command": "workspace:^",
  64. "@deepseek-ai/dsh-session": "workspace:^",
  65. "@deepseek-ai/dsh-settings": "workspace:^",
  66. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  67. }
  68. }