package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.0.1-rc.1",
  5. "publishConfig": {
  6. "access": "restricted"
  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": "BSD-3-Clause",
  34. "peerDependencies": {
  35. "@deepseek-ai/cordis": "workspace:^",
  36. "@deepseek-ai/dsh-invariants": "workspace:^"
  37. },
  38. "dependencies": {
  39. "@deepseek-ai/schemastery": "workspace:^"
  40. },
  41. "devDependencies": {
  42. "@deepseek-ai/cordis": "workspace:^",
  43. "@deepseek-ai/dsh-invariants": "workspace:^"
  44. }
  45. }