package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.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/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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./types": {
  26. "types": "./lib/types/types.d.ts",
  27. "default": "./lib/types/types.js"
  28. },
  29. "./typert": {
  30. "types": "./lib/typert.host.d.ts",
  31. "default": "./lib/typert.host.js"
  32. },
  33. "./remote": {
  34. "types": "./lib/typert.remote-client.d.ts",
  35. "default": "./lib/typert.remote-client.js"
  36. },
  37. "./src/*": "./src/*",
  38. "./package.json": "./package.json"
  39. },
  40. "files": [
  41. "lib/index.js",
  42. "lib/invariant.js",
  43. "lib/types/**/*.js",
  44. "lib/types/**/*.d.ts",
  45. "lib/typert.host.js",
  46. "lib/typert.host.d.ts",
  47. "lib/typert.remote-client.js",
  48. "lib/typert.remote-client.d.ts"
  49. ],
  50. "license": "MIT",
  51. "dependencies": {
  52. "zod": "^4.4.3"
  53. },
  54. "peerDependencies": {
  55. "@deepseek-ai/cordis": "workspace:^",
  56. "@deepseek-ai/dsh-credentials": "workspace:^",
  57. "@deepseek-ai/dsh-invariants": "workspace:^",
  58. "@deepseek-ai/dsh-session": "workspace:^",
  59. "@deepseek-ai/dsh-settings": "workspace:^",
  60. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  61. },
  62. "devDependencies": {
  63. "@deepseek-ai/cordis": "workspace:^",
  64. "@deepseek-ai/dsh-credentials": "workspace:^",
  65. "@deepseek-ai/dsh-invariants": "workspace:^",
  66. "@deepseek-ai/dsh-session": "workspace:^",
  67. "@deepseek-ai/dsh-settings": "workspace:^",
  68. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  69. }
  70. }