mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-03 06:18:22 +00:00
# Conflicts: # .agents/notes/implemented/architecture/2026-08-04-draft-provider-endpoint-interrogation.i18n.yaml # .agents/notes/implemented/architecture/2026-08-04-draft-provider-endpoint-interrogation.md # .agents/notes/implemented/architecture/2026-08-04-draft-provider-endpoint-interrogation.zh.md # .agents/notes/implemented/feature/2026-08-06-continuable-subagent-interrupt.i18n.yaml # .agents/notes/implemented/feature/2026-08-06-continuable-subagent-interrupt.md # .agents/notes/implemented/feature/2026-08-06-continuable-subagent-interrupt.zh.md # .agents/notes/implemented/process/2026-07-20-gui-testing-system.i18n.yaml # .agents/notes/implemented/process/2026-07-20-gui-testing-system.md # .agents/notes/implemented/process/2026-07-20-gui-testing-system.zh.md
78 lines
2.7 KiB
JSON
78 lines
2.7 KiB
JSON
{
|
|
"name": "@deepseek-ai/dsh-experimental-webworker-runtime",
|
|
"description": "Browser-only harness runtime: in-memory VFS, module transform and loader, postMessage tunnel, and the dedicated Web Worker assembly, with the Node-compatibility layer that lets the host tree run unchanged",
|
|
"version": "0.1.2-alpha.1",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
|
|
"directory": "packages/experimental/webworker-runtime"
|
|
},
|
|
"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"
|
|
},
|
|
"./src/*": "./src/*",
|
|
"./package.json": "./package.json",
|
|
"./worker": "./lib/worker.js",
|
|
"./client": {
|
|
"types": "./lib/types/client/index.d.ts",
|
|
"default": "./lib/client.js"
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@deepseek-ai/dsh-util-crypto": "workspace:^",
|
|
"@noble/hashes": "^2.3.0",
|
|
"@yarnpkg/parsers": "^3.1.0",
|
|
"acorn": "^8.17.0",
|
|
"buffer": "^6.0.3",
|
|
"picomatch": "^4.0.4",
|
|
"readable-stream": "^4.7.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@deepseek-ai/cordis": "workspace:^",
|
|
"@deepseek-ai/cordis-plugin-loader": "workspace:^",
|
|
"@deepseek-ai/dsh-client-connection": "workspace:^",
|
|
"@deepseek-ai/dsh-client-modules": "workspace:^",
|
|
"@deepseek-ai/dsh-host-webserver": "workspace:^",
|
|
"@deepseek-ai/dsh-invariants": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@deepseek-ai/cordis": "workspace:^",
|
|
"@deepseek-ai/cordis-plugin-loader": "workspace:^",
|
|
"@deepseek-ai/dsh-api-gateway": "workspace:^",
|
|
"@deepseek-ai/dsh-bash-sandbox": "workspace:^",
|
|
"@deepseek-ai/dsh-client-connection": "workspace:^",
|
|
"@deepseek-ai/dsh-client-modules": "workspace:^",
|
|
"@deepseek-ai/dsh-host-webserver": "workspace:^",
|
|
"@deepseek-ai/dsh-invariants": "workspace:^",
|
|
"@deepseek-ai/dsh-sandbox-local": "workspace:^",
|
|
"@deepseek-ai/dsh-sandbox-policy": "workspace:^",
|
|
"@deepseek-ai/dsh-session": "workspace:^",
|
|
"@deepseek-ai/dsh-session-projection": "workspace:^",
|
|
"@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
|
|
"@deepseek-ai/dsh-subagent": "workspace:^",
|
|
"@deepseek-ai/dsh-subprocess-local": "workspace:^",
|
|
"@deepseek-ai/node-addon-landlock-run": "workspace:^",
|
|
"@types/picomatch": "^3.0.2",
|
|
"@types/readable-stream": "^4.0.24",
|
|
"chokidar": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"lib/index.js",
|
|
"lib/invariant.js",
|
|
"lib/worker.js",
|
|
"lib/client.js",
|
|
"lib/types/**/*.d.ts"
|
|
]
|
|
}
|