Files
deepseek-harness/packages/interaction/user-questions/package.json
T

52 lines
1.4 KiB
JSON
Raw Normal View History

2026-06-25 22:51:38 +08:00
{
2026-08-13 00:36:22 +08:00
"name": "@deepseek-ai/dsh-user-questions",
"description": "Abstract user-questions seam (ctx.userQuestions) for asking the human during agent runs",
2026-08-13 05:58:16 +08:00
"version": "0.0.1-rc.5",
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
2026-08-13 00:36:22 +08:00
"directory": "packages/interaction/user-questions"
},
2026-06-25 22:51:38 +08:00
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./invariant": {
"types": "./lib/types/invariant.d.ts",
"default": "./lib/invariant.js"
},
"./types": {
"types": "./lib/types/types.d.ts",
"default": "./lib/types/types.js"
},
2026-06-25 22:51:38 +08:00
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"files": [
"lib/index.js",
"lib/invariant.js",
"lib/types/**/*.js",
"lib/types/**/*.d.ts"
2026-06-25 22:51:38 +08:00
],
2026-08-13 01:46:57 +08:00
"license": "MIT",
2026-06-25 22:51:38 +08:00
"peerDependencies": {
"@deepseek-ai/dsh-agent": "workspace:^",
"@deepseek-ai/dsh-invariants": "workspace:^",
"@deepseek-ai/dsh-llm": "workspace:^",
"@deepseek-ai/cordis": "workspace:^"
2026-06-25 22:51:38 +08:00
},
"devDependencies": {
"@deepseek-ai/dsh-agent": "workspace:^",
"@deepseek-ai/dsh-invariants": "workspace:^",
2026-06-29 10:49:07 +08:00
"@deepseek-ai/dsh-llm": "workspace:^",
"@deepseek-ai/cordis": "workspace:^"
2026-06-25 22:51:38 +08:00
}
}