package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@deepseek-ai/dsh-session",
  3. "description": "Event-sourced session store for the DeepSeek Harness",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./types": {
  19. "types": "./lib/types/types.d.ts",
  20. "default": "./lib/types/types.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json",
  24. "./surface": {
  25. "types": "./lib/types/surface.d.ts",
  26. "default": "./lib/types/surface.js"
  27. }
  28. },
  29. "files": [
  30. "lib/index.js",
  31. "lib/invariant.js",
  32. "lib/types/**/*.js",
  33. "lib/types/**/*.d.ts"
  34. ],
  35. "license": "BSD-3-Clause",
  36. "peerDependencies": {
  37. "@deepseek-ai/dsh-brand": "^0.0.1",
  38. "@deepseek-ai/dsh-invariants": "^0.0.1",
  39. "@deepseek-ai/dsh-llm": "^0.0.1",
  40. "@deepseek-ai/dsh-scope": "^0.0.1",
  41. "cordis": "^4.0.0-rc.7"
  42. },
  43. "devDependencies": {
  44. "@deepseek-ai/dsh-brand": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/dsh-llm": "workspace:^",
  47. "@deepseek-ai/dsh-scope": "workspace:^",
  48. "cordis": "^4.0.0-rc.7"
  49. }
  50. }