-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.12 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "dsh-git-workbench",
"version": "0.1.0",
"description": "Git and GitHub pull-request workbench for DeepSeek Harness, with agent tools and an integrated Web UI.",
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/types/client/index.d.ts",
"default": "./lib/client.js"
},
"./types": {
"types": "./lib/types/types.d.ts",
"default": "./lib/types.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib/index.js",
"lib/client.js",
"lib/client.js.map",
"lib/types.js",
"lib/types/**/*.js",
"lib/types/**/*.d.ts",
"cordis.patch.yml",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-ui-slots",
"@deepseek-ai/dsh-client-ui-sidebar"
]
}
},
"scripts": {
"build": "pnpm run clean && tsc -p tsconfig.build.json && tsdown",
"clean": "node scripts/clean.mjs",
"prepare": "pnpm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "pnpm run typecheck && pnpm run test && pnpm run build",
"pack:check": "pnpm pack --dry-run"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"keywords": [
"deepseek-harness",
"dsh",
"git",
"github",
"pull-request",
"plugin",
"dsh-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FlutterSoul/dsh-git-workbench.git"
},
"bugs": {
"url": "https://github.com/FlutterSoul/dsh-git-workbench/issues"
},
"homepage": "https://github.com/FlutterSoul/dsh-git-workbench#readme",
"license": "MIT",
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-sidebar": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-slots": "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",
"react": "^18.3.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-sidebar": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-slots": "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": "24.13.3",
"@types/react": "18.3.31",
"@vitest/coverage-v8": "3.2.7",
"react": "18.3.1",
"tsdown": "0.15.12",
"typescript": "5.9.3",
"vitest": "3.2.7"
},
"packageManager": "pnpm@11.19.0"
}