package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@deepseek-ai/dsh-acp-app",
  3. "description": "The dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-base",
  4. "version": "0.1.3-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/bundle/acp-app"
  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. "./cordis.patch.yml": "./cordis.patch.yml",
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "files": [
  26. "lib/index.js",
  27. "cordis.patch.yml",
  28. "lib/types/**/*.d.ts"
  29. ],
  30. "license": "MIT",
  31. "dsh": {
  32. "bundle": {
  33. "patch": "./cordis.patch.yml"
  34. }
  35. },
  36. "dependencies": {
  37. "@deepseek-ai/dsh-acp": "workspace:^",
  38. "@deepseek-ai/dsh-cmdline": "workspace:^",
  39. "commander": "^15.0.0"
  40. },
  41. "peerDependencies": {
  42. "@deepseek-ai/cordis": "workspace:^"
  43. },
  44. "devDependencies": {
  45. "@deepseek-ai/cordis-plugin-include": "workspace:^",
  46. "@deepseek-ai/cordis": "workspace:^"
  47. }
  48. }