-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.77 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@dsh-external/dsh-schedule",
"version": "0.1.0",
"description": "DSH 定时任务与状态监控插件:cron 自动触发 Agent 执行任务、任务管理命令与设置页、系统与 harness 状态仪表盘",
"private": true,
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-runtime"
]
}
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"watch": "tsdown --watch"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"cordis",
"cron",
"schedule",
"status"
],
"author": "csiroqa <justinwangyj@163.com>",
"license": "MIT",
"homepage": "https://github.com/csiroqa/dsh-schedule",
"repository": {
"type": "git",
"url": "git+https://github.com/csiroqa/dsh-schedule.git"
},
"bugs": {
"url": "https://github.com/csiroqa/dsh-schedule/issues"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.7.0",
"dependencies": {
"@deepseek-ai/cordis": "link:../deepseek-harness/vendor/cordis",
"@deepseek-ai/cordis-plugin-loader": "link:../deepseek-harness/vendor/loader",
"@deepseek-ai/cordis-plugin-timer": "link:../deepseek-harness/vendor/timer",
"@deepseek-ai/dsh-agent": "link:../deepseek-harness/packages/core/agent",
"@deepseek-ai/dsh-client-locale": "link:../deepseek-harness/packages/client/locale",
"@deepseek-ai/dsh-client-runtime": "link:../deepseek-harness/packages/client/runtime",
"@deepseek-ai/dsh-client-ui-settings": "link:../deepseek-harness/packages/client/ui-settings",
"@deepseek-ai/dsh-client-ui-slots": "link:../deepseek-harness/packages/client/ui-slots",
"@deepseek-ai/dsh-commands": "link:../deepseek-harness/packages/interaction/commands",
"@deepseek-ai/dsh-home-paths": "link:../deepseek-harness/packages/util/home-paths",
"@deepseek-ai/dsh-host-webserver": "link:../deepseek-harness/packages/host/webserver",
"@deepseek-ai/dsh-llm": "link:../deepseek-harness/packages/llm/llm",
"@deepseek-ai/dsh-session": "link:../deepseek-harness/packages/core/session"
},
"devDependencies": {
"@types/node": "^24.13.3",
"@types/react": "~18.3.1",
"@types/react-dom": "~18.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsdown": "^0.22.14",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"files": [
"lib/index.js",
"lib/client.js",
"src",
"cordis.patch.yml"
]
}