package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@deepseek-ai/dsh-client-store",
  3. "description": "React-free observable and snapshot-store contracts with the shared Zustand/Immer engine",
  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/client/store"
  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. "license": "MIT",
  29. "dependencies": {
  30. "immer": "^10.1.1",
  31. "zustand": "~4.4.7"
  32. },
  33. "peerDependencies": {
  34. "@deepseek-ai/cordis": "workspace:^",
  35. "@deepseek-ai/dsh-invariants": "workspace:^"
  36. },
  37. "devDependencies": {
  38. "@deepseek-ai/cordis": "workspace:^",
  39. "@deepseek-ai/dsh-invariants": "workspace:^"
  40. },
  41. "files": [
  42. "lib/index.js",
  43. "lib/invariant.js",
  44. "lib/types/**/*.d.ts"
  45. ]
  46. }