package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "@deepseek-ai/dsh-api-workspace-files",
  3. "description": "Workspace file service and Client resource provider: bounded reads, directory listing, and live metadata over the workspaceFiles Remote namespace",
  4. "version": "0.1.5-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/workspace-files"
  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. "./client": {
  26. "types": "./lib/types/client/index.d.ts",
  27. "default": "./lib/client.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. "dsh": {
  41. "client": {
  42. "inject": [
  43. "@deepseek-ai/dsh-api-gateway",
  44. "@deepseek-ai/dsh-client-resources"
  45. ],
  46. "platform": "web"
  47. }
  48. },
  49. "scripts": {
  50. "bundle": "tsdown",
  51. "watch": "tsdown --watch"
  52. },
  53. "license": "MIT",
  54. "dependencies": {
  55. "@deepseek-ai/dsh-deque": "workspace:^",
  56. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  57. "@deepseek-ai/schemastery": "workspace:^",
  58. "zod": "^4.4.3"
  59. },
  60. "peerDependencies": {
  61. "@deepseek-ai/cordis": "workspace:^"
  62. },
  63. "devDependencies": {
  64. "@deepseek-ai/cordis": "workspace:^",
  65. "@deepseek-ai/dsh-agent": "workspace:^",
  66. "@deepseek-ai/dsh-api-gateway": "workspace:^",
  67. "@deepseek-ai/dsh-client-resources": "workspace:^",
  68. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  69. "@deepseek-ai/dsh-fs": "workspace:^",
  70. "@deepseek-ai/dsh-sandbox-policy": "workspace:^",
  71. "@deepseek-ai/dsh-session": "workspace:^",
  72. "@deepseek-ai/dsh-util-workspace-path": "workspace:^"
  73. },
  74. "files": [
  75. "lib/index.js",
  76. "lib/client.js",
  77. "lib/types/**/*.js",
  78. "lib/types/**/*.d.ts",
  79. "lib/typert.host.js",
  80. "lib/typert.host.d.ts",
  81. "lib/typert.remote-client.js",
  82. "lib/typert.remote-client.d.ts"
  83. ]
  84. }