2026-06-12 23:28:44 +08:00
|
|
|
{
|
|
|
|
|
"name": "@deepseek-ai/dsh-tool-bash",
|
2026-07-11 23:04:27 +08:00
|
|
|
"description": "Model-facing bash tool with optional generic background-task and sandbox-escalation support",
|
2026-08-11 22:39:48 +08:00
|
|
|
"version": "0.0.1-rc.2",
|
2026-08-11 00:02:53 +08:00
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "restricted"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
|
|
|
|
|
"directory": "packages/bash/tool-bash"
|
|
|
|
|
},
|
2026-06-12 23:28:44 +08:00
|
|
|
"type": "module",
|
|
|
|
|
"main": "lib/index.js",
|
2026-06-20 00:26:02 +08:00
|
|
|
"types": "lib/types/index.d.ts",
|
2026-06-12 23:28:44 +08:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2026-06-20 00:26:02 +08:00
|
|
|
"types": "./lib/types/index.d.ts",
|
2026-06-12 23:28:44 +08:00
|
|
|
"default": "./lib/index.js"
|
|
|
|
|
},
|
2026-07-19 22:13:50 +08:00
|
|
|
"./invariant": {
|
|
|
|
|
"types": "./lib/types/invariant.d.ts",
|
|
|
|
|
"default": "./lib/invariant.js"
|
|
|
|
|
},
|
2026-06-12 23:28:44 +08:00
|
|
|
"./src/*": "./src/*",
|
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
2026-06-17 23:20:04 +08:00
|
|
|
"lib/index.js",
|
2026-07-19 22:13:50 +08:00
|
|
|
"lib/invariant.js",
|
2026-08-04 22:06:32 +08:00
|
|
|
"lib/types/**/*.d.ts"
|
2026-06-12 23:28:44 +08:00
|
|
|
],
|
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
|
"peerDependencies": {
|
2026-08-11 00:16:45 +08:00
|
|
|
"@deepseek-ai/dsh-agent": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-bash": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-bash-env": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-invariants": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-llm": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-sandbox": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-sandbox-policy": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-system-prompt": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-tasks": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-tools": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-user-approval": "workspace:^",
|
|
|
|
|
"@deepseek-ai/cordis": "workspace:^"
|
2026-06-12 23:28:44 +08:00
|
|
|
},
|
2026-07-09 21:22:54 +08:00
|
|
|
"dependencies": {
|
2026-08-11 00:16:45 +08:00
|
|
|
"@deepseek-ai/schemastery": "workspace:^"
|
2026-07-09 21:22:54 +08:00
|
|
|
},
|
2026-06-12 23:28:44 +08:00
|
|
|
"devDependencies": {
|
2026-06-16 14:55:37 +08:00
|
|
|
"@deepseek-ai/dsh-agent": "workspace:^",
|
|
|
|
|
"@deepseek-ai/dsh-agent-loop": "workspace:^",
|
2026-07-16 17:39:53 +08:00
|
|
|
"@deepseek-ai/dsh-agent-loop-testkit": "workspace:^",
|
2026-06-16 14:55:37 +08:00
|
|
|
"@deepseek-ai/dsh-bash": "workspace:^",
|
2026-08-02 14:18:01 +08:00
|
|
|
"@deepseek-ai/dsh-bash-env": "workspace:^",
|
2026-06-16 14:55:37 +08:00
|
|
|
"@deepseek-ai/dsh-bash-local": "workspace:^",
|
2026-07-19 22:13:50 +08:00
|
|
|
"@deepseek-ai/dsh-invariants": "workspace:^",
|
2026-06-16 14:55:37 +08:00
|
|
|
"@deepseek-ai/dsh-llm": "workspace:^",
|
2026-07-26 12:43:14 +08:00
|
|
|
"@deepseek-ai/dsh-subprocess-local": "workspace:^",
|
2026-07-09 16:05:44 +08:00
|
|
|
"@deepseek-ai/dsh-sandbox": "workspace:^",
|
2026-07-14 20:05:57 +08:00
|
|
|
"@deepseek-ai/dsh-sandbox-policy": "workspace:^",
|
2026-07-09 16:37:10 +08:00
|
|
|
"@deepseek-ai/dsh-session": "workspace:^",
|
2026-07-10 20:52:27 +08:00
|
|
|
"@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
|
2026-06-16 14:55:37 +08:00
|
|
|
"@deepseek-ai/dsh-system-prompt": "workspace:^",
|
2026-07-09 21:22:54 +08:00
|
|
|
"@deepseek-ai/dsh-tasks": "workspace:^",
|
2026-07-26 05:13:39 +08:00
|
|
|
"@deepseek-ai/dsh-tasks-local": "workspace:^",
|
2026-07-09 21:22:54 +08:00
|
|
|
"@deepseek-ai/dsh-tool-tasks": "workspace:^",
|
2026-06-16 14:55:37 +08:00
|
|
|
"@deepseek-ai/dsh-tools": "workspace:^",
|
2026-07-16 23:31:51 +08:00
|
|
|
"@deepseek-ai/dsh-user-approval": "workspace:^",
|
2026-08-11 00:16:45 +08:00
|
|
|
"@deepseek-ai/cordis": "workspace:^"
|
2026-06-12 23:28:44 +08:00
|
|
|
}
|
|
|
|
|
}
|