package.json 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@deepseek-ai/dsh-jsonrpc-demo",
  3. "description": "Bin that boots an external Cordis config for the stdio JSON-RPC SDK runtime",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "bin": {
  10. "dsh-jsonrpc-agent": "lib/bin.js"
  11. },
  12. "exports": {
  13. ".": {
  14. "types": "./lib/types/index.d.ts",
  15. "default": "./lib/index.js"
  16. },
  17. "./bin": {
  18. "types": "./lib/types/bin.d.ts",
  19. "default": "./lib/bin.js"
  20. },
  21. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "files": [
  25. "lib/index.js",
  26. "lib/bin.js",
  27. "lib/types/**/*.d.ts",
  28. "lib/types/**/*.d.ts.map",
  29. "src"
  30. ],
  31. "license": "BSD-3-Clause",
  32. "dependencies": {
  33. "@deepseek-ai/dsh-app-boot": "workspace:^"
  34. },
  35. "peerDependencies": {
  36. "cordis": "^4.0.0-rc.7"
  37. },
  38. "devDependencies": {
  39. "cordis": "^4.0.0-rc.7"
  40. }
  41. }