package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@deepseek-ai/dsh-web-fetch-http",
  3. "description": "Anonymous public HTTP(S) fetch provider for the DeepSeek Harness web capability seam (ctx.web)",
  4. "version": "0.1.3-alpha.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/web/web-fetch-http"
  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. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "files": [
  25. "lib/index.js",
  26. "lib/types/**/*.d.ts"
  27. ],
  28. "license": "MIT",
  29. "peerDependencies": {
  30. "@deepseek-ai/cordis": "workspace:^",
  31. "@deepseek-ai/dsh-timeout": "workspace:^",
  32. "@deepseek-ai/dsh-web": "workspace:^",
  33. "@deepseek-ai/dsh-http-proxy": "workspace:^"
  34. },
  35. "dependencies": {
  36. "@deepseek-ai/schemastery": "workspace:^",
  37. "ipaddr.js": "^2.5.0",
  38. "undici": "^8.10.0"
  39. },
  40. "devDependencies": {
  41. "@deepseek-ai/cordis": "workspace:^",
  42. "@deepseek-ai/dsh-timeout": "workspace:^",
  43. "@deepseek-ai/dsh-web": "workspace:^",
  44. "@deepseek-ai/dsh-http-proxy": "workspace:^"
  45. }
  46. }