-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "dsh-taskboard",
"description": "Agent-first task board for the DSH web GUI: host-authoritative task ledger with taskboard_* agent tools, project (= workspace) claim boundaries, per-task model execution in fresh sessions, optional per-task git-worktree isolation (dedicated task branches, commit evidence, one-click merge), host-side cron scheduling, and a live SSE kanban view. Mounts via the official dsh plugin system — no DSH source changes.",
"version": "0.4.0",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./invariant": "./lib/invariant.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [],
"platform": "web"
}
},
"files": [
"lib/**/*.js",
"lib/**/*.js.map",
"src",
"cordis.patch.yml",
"LICENSE"
],
"license": "Apache-2.0",
"author": "cloader",
"repository": {
"type": "git",
"url": "git+https://github.com/cloader/dsh-taskboard.git"
},
"bugs": {
"url": "https://github.com/cloader/dsh-taskboard/issues"
},
"homepage": "https://github.com/cloader/dsh-taskboard#readme",
"keywords": [
"dsh",
"deepseek-harness",
"dsh-plugin",
"taskboard",
"kanban",
"agent"
],
"scripts": {
"build": "npm run build:host && npm run build:client",
"build:host": "tsdown -c tsdown.host.config.ts",
"build:client": "tsdown -c tsdown.client.config.ts && node scripts/wrap-client.mjs",
"watch": "tsdown -c tsdown.host.config.ts --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
"@deepseek-ai/dsh-home-paths": "^0.1.0-rc.6",
"@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.6",
"@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.6",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.6",
"@deepseek-ai/dsh-workspace": "^0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1",
"@types/node": "^22.20.1",
"@types/react": "~18.3.1",
"@types/react-dom": "^18.3.7",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsdown": "0.22.2",
"typescript": "~5.7.2",
"vitest": "^3.0.0"
}
}