package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@deepseek-ai/dsh-session-projection-cache",
  3. "description": "Persisted projection cache (ctx.sessionProjectionCache): durable per-session checkpoint records on the session_projcache storage domain (per-record layout), throttled write-behind, and the cached listing read",
  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/session/session-projection-cache"
  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. "dependencies": {
  30. "@deepseek-ai/dsh-util-values": "workspace:^",
  31. "@deepseek-ai/schemastery": "workspace:^",
  32. "zod": "^4.4.3"
  33. },
  34. "peerDependencies": {
  35. "@deepseek-ai/cordis": "workspace:^",
  36. "@deepseek-ai/dsh-session": "workspace:^",
  37. "@deepseek-ai/dsh-session-projection": "workspace:^",
  38. "@deepseek-ai/dsh-storage-domain": "workspace:^"
  39. },
  40. "devDependencies": {
  41. "@deepseek-ai/cordis": "workspace:^",
  42. "@deepseek-ai/dsh-session": "workspace:^",
  43. "@deepseek-ai/dsh-session-projection": "workspace:^",
  44. "@deepseek-ai/dsh-storage": "workspace:^",
  45. "@deepseek-ai/dsh-storage-domain": "workspace:^",
  46. "@deepseek-ai/dsh-storage-json": "workspace:^"
  47. }
  48. }