package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@deepseek-ai/dsh-loader-smoke",
  3. "description": "Shared subprocess and direct-agent harness for keyless real-Loader example smoke tests",
  4. "version": "0.1.5-alpha.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/test-support/loader-smoke"
  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. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "files": [
  25. "lib/index.js",
  26. "lib/types/**/*.d.ts"
  27. ],
  28. "license": "MIT",
  29. "dependencies": {
  30. "execa": "^10.0.0",
  31. "tsx": "^4.22.4"
  32. },
  33. "peerDependencies": {
  34. "@deepseek-ai/cordis": "workspace:^",
  35. "@deepseek-ai/dsh-agent": "workspace:^",
  36. "@deepseek-ai/dsh-llm": "workspace:^",
  37. "@deepseek-ai/dsh-session": "workspace:^",
  38. "@deepseek-ai/dsh-http-proxy": "workspace:^"
  39. },
  40. "devDependencies": {
  41. "@deepseek-ai/cordis": "workspace:^",
  42. "@deepseek-ai/dsh-agent": "workspace:^",
  43. "@deepseek-ai/dsh-app-boot": "workspace:^",
  44. "@deepseek-ai/dsh-llm": "workspace:^",
  45. "@deepseek-ai/dsh-session": "workspace:^",
  46. "@deepseek-ai/dsh-http-proxy": "workspace:^"
  47. }
  48. }