Files
dsh-easy-desktop/plugins/agentrq/package.json
TommyFang d6f5359873 fix: ship a loadable AgentRQ bundle that stays idle without a workspace URL
The first integration copied sources without lib/, skipped packaging paths, and could fail the default web profile when url was unset.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 12:36:04 +08:00

78 lines
2.1 KiB
JSON

{
"name": "agentrq",
"version": "0.2.1",
"private": true,
"description": "AgentRQ task manager for DeepSeek Harness: create, manage, and auto-pull AgentRQ tasks without leaving the harness",
"keywords": [
"dsh-plugin",
"deepseek-harness",
"agentrq",
"task-manager",
"mcp"
],
"homepage": "https://github.com/TommyFang2077/dsh-desktop/tree/main/plugins/agentrq",
"repository": {
"type": "git",
"url": "git+https://github.com/TommyFang2077/dsh-desktop.git",
"directory": "plugins/agentrq"
},
"license": "Apache-2.0",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"build": "tsdown",
"prepare": "tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1",
"@modelcontextprotocol/sdk": "^1.12.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.0",
"@deepseek-ai/dsh-agent": "^0.1.0-rc.1",
"@deepseek-ai/dsh-llm": "^0.0.1-rc.1",
"@deepseek-ai/dsh-mcp-client": "^0.0.1-rc.1",
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.1",
"@deepseek-ai/dsh-tools": "^0.0.1-rc.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
"@deepseek-ai/dsh-attachment": "^0.0.1-rc.1",
"@deepseek-ai/dsh-brand": "^0.0.1-rc.1",
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.1",
"@deepseek-ai/dsh-llm": "^0.0.1-rc.1",
"@deepseek-ai/dsh-mcp-client": "^0.0.1-rc.1",
"@deepseek-ai/dsh-session": "^0.0.1-rc.1",
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.1",
"@deepseek-ai/dsh-timeout": "^0.0.1-rc.1",
"@deepseek-ai/dsh-tools": "^0.0.1-rc.1",
"@types/node": "^22.20.1",
"tsdown": "^0.15.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}