package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-slots",
  3. "description": "Slot registry pure core: SlotMap declaration merging, single register composition API, four-share props types, store-seat types, renderer install seam",
  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/ui-slots"
  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. "devDependencies": {
  30. "@deepseek-ai/dsh-client-store": "workspace:^",
  31. "@deepseek-ai/dsh-invariants": "workspace:^",
  32. "@types/react": "~18.3.1",
  33. "@deepseek-ai/cordis": "workspace:^"
  34. },
  35. "files": [
  36. "lib/index.js",
  37. "lib/invariant.js",
  38. "lib/types/**/*.d.ts"
  39. ],
  40. "peerDependencies": {
  41. "@deepseek-ai/dsh-invariants": "workspace:^",
  42. "@deepseek-ai/cordis": "workspace:^"
  43. }
  44. }