package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@deepseek-ai/dsh-client-resources",
  3. "description": "Unified client resource model: protocol-registered providers turn URL addresses into live values, consumed through the useResource global standard hook",
  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/client/resources"
  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. "./client": {
  22. "types": "./lib/types/client/index.d.ts",
  23. "default": "./lib/client.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "dsh": {
  29. "client": {
  30. "inject": [
  31. "@deepseek-ai/dsh-client-ui-renderer"
  32. ],
  33. "platform": "web"
  34. }
  35. },
  36. "scripts": {
  37. "bundle": "tsdown",
  38. "watch": "tsdown --watch"
  39. },
  40. "license": "MIT",
  41. "peerDependencies": {
  42. "@deepseek-ai/cordis": "workspace:^"
  43. },
  44. "devDependencies": {
  45. "@deepseek-ai/cordis": "workspace:^",
  46. "@deepseek-ai/dsh-client-store": "workspace:^",
  47. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  48. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  49. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  50. "@deepseek-ai/dsh-typert-protocol": "workspace:^"
  51. },
  52. "files": [
  53. "lib/index.js",
  54. "lib/client.js",
  55. "lib/types/**/*.d.ts"
  56. ]
  57. }