package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@deepseek-ai/dsh-host-webserver",
  3. "description": "Web route-registration plugin: HTTP and upgrade routes, index transform taps, and static dist fallback; knows no harness concepts",
  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/host/webserver"
  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. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "files": [
  29. "lib/index.js",
  30. "lib/invariant.js",
  31. "lib/types/**/*.d.ts"
  32. ],
  33. "license": "MIT",
  34. "peerDependencies": {
  35. "@deepseek-ai/cordis": "workspace:^",
  36. "@deepseek-ai/dsh-invariants": "workspace:^"
  37. },
  38. "dependencies": {
  39. "@deepseek-ai/schemastery": "workspace:^",
  40. "compression": "^1.8.1",
  41. "negotiator": "^1.0.0"
  42. },
  43. "devDependencies": {
  44. "@deepseek-ai/cordis": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@types/compression": "^1.8.1",
  47. "@types/negotiator": "^0.6.5"
  48. }
  49. }