package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@deepseek-ai/dsh-session",
  3. "description": "Event-sourced session store for the DeepSeek Harness",
  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/core/session"
  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. "./types": {
  26. "types": "./lib/types/types.d.ts",
  27. "default": "./lib/types/types.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json",
  31. "./surface": {
  32. "types": "./lib/types/surface.d.ts",
  33. "default": "./lib/types/surface.js"
  34. }
  35. },
  36. "files": [
  37. "lib/index.js",
  38. "lib/invariant.js",
  39. "lib/types/**/*.js",
  40. "lib/types/**/*.d.ts"
  41. ],
  42. "license": "MIT",
  43. "peerDependencies": {
  44. "@deepseek-ai/dsh-scope": "workspace:^",
  45. "@deepseek-ai/cordis": "workspace:^"
  46. },
  47. "devDependencies": {
  48. "@deepseek-ai/dsh-invariants": "workspace:^",
  49. "@deepseek-ai/dsh-scope": "workspace:^",
  50. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  51. "@deepseek-ai/dsh-typert-registry": "workspace:^",
  52. "@deepseek-ai/cordis": "workspace:^"
  53. },
  54. "dependencies": {
  55. "@deepseek-ai/dsh-llm": "workspace:^",
  56. "@deepseek-ai/dsh-brand": "workspace:^",
  57. "@deepseek-ai/dsh-util-values": "workspace:^"
  58. }
  59. }