dsh-comfyui 0.3.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "dsh-comfyui",
3
+ "version": "0.3.0-beta.0",
4
+ "description": "Drive ComfyUI from DeepSeek Harness: generate and process images and videos through agent tools, with a workflow/asset/queue panel, in-chat results and a settings page. / 让 DeepSeek Harness 的 Agent 直接驱动 ComfyUI 生成与处理图像、视频,带工作流/资产/队列面板。",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "types": "lib/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./lib/index.d.ts",
11
+ "default": "./lib/index.js"
12
+ },
13
+ "./client": "./client/client.js",
14
+ "./cordis.patch.yml": "./cordis.patch.yml",
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "lib",
19
+ "client",
20
+ "cordis.patch.yml",
21
+ "README.md",
22
+ "README.zh.md",
23
+ "LICENSE"
24
+ ],
25
+ "scripts": {
26
+ "build": "npm run build:host && npm run build:client",
27
+ "build:host": "tsc -p tsconfig.json",
28
+ "build:client": "tsdown -c tsdown.config.mjs",
29
+ "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.client.json --noEmit",
30
+ "prepack": "npm run build"
31
+ },
32
+ "keywords": [
33
+ "deepseek",
34
+ "harness",
35
+ "dsh",
36
+ "dsh-plugin",
37
+ "comfyui",
38
+ "image-generation",
39
+ "video-generation"
40
+ ],
41
+ "license": "MIT",
42
+ "engines": {
43
+ "node": ">=22.19"
44
+ },
45
+ "dependencies": {
46
+ "@deepseek-ai/schemastery": "^3.18.0"
47
+ },
48
+ "peerDependencies": {
49
+ "@deepseek-ai/cordis": "^4.0.1",
50
+ "@deepseek-ai/dsh-settings": "^0.1.0-rc.7"
51
+ },
52
+ "peerDependenciesMeta": {
53
+ "@deepseek-ai/dsh-settings": {
54
+ "optional": true
55
+ }
56
+ },
57
+ "devDependencies": {
58
+ "@deepseek-ai/cordis": "^4.0.1",
59
+ "@deepseek-ai/dsh-settings": "^0.1.0-rc.7",
60
+ "@types/node": "^24.0.0",
61
+ "@types/react": "~18.3.1",
62
+ "react": "^18.3.1",
63
+ "tsdown": "^0.22.0",
64
+ "typescript": "^5.6.0"
65
+ },
66
+ "dsh": {
67
+ "bundle": {
68
+ "patch": "./cordis.patch.yml"
69
+ },
70
+ "client": {
71
+ "platform": "web",
72
+ "inject": [
73
+ "@deepseek-ai/dsh-client-connection",
74
+ "@deepseek-ai/dsh-client-runtime",
75
+ "@deepseek-ai/dsh-client-locale",
76
+ "@deepseek-ai/dsh-client-ui-settings"
77
+ ]
78
+ }
79
+ }
80
+ }