-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.59 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
{
"name": "dsh-diff-stat",
"version": "0.1.6",
"description": "Inline +N −M diff badges on edit/write tool rows and a per-turn file change summary card for DeepSeek Harness. PTC/code-dispatch fallback, no git required.",
"keywords": [
"deepseek-harness",
"dsh",
"plugin",
"dsh-plugin",
"diff",
"code-review"
],
"type": "module",
"main": "./lib/index.js",
"files": [
"lib",
"cordis.patch.yml"
],
"author": "HaoyueQin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HaoyueQin/dsh-diff-stat.git"
},
"homepage": "https://github.com/HaoyueQin/dsh-diff-stat",
"bugs": {
"url": "https://github.com/HaoyueQin/dsh-diff-stat/issues"
},
"packageManager": "pnpm@11.9.0",
"scripts": {
"build": "pnpm run build:clean && tsdown",
"prepare": "pnpm run build",
"watch": "tsdown --watch",
"typecheck": "tsc --noEmit -p tsconfig.json",
"check:align": "node scripts/check-diff-align.mjs",
"check:join": "node scripts/check-turn-join.mjs",
"build:clean": "node -e \"require('node:fs').rmSync('lib', { recursive: true, force: true })\""
},
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-ui-slots",
"@deepseek-ai/dsh-client-ui-conversation"
],
"platform": "web"
}
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-client-ui-conversation": ">=0.1.1-rc.1 || >=0.1.2-0",
"@deepseek-ai/dsh-client-ui-primitives": ">=0.1.1-rc.1 || >=0.1.2-0",
"@deepseek-ai/dsh-client-ui-slots": ">=0.1.1-rc.1 || >=0.1.2-0",
"react": "^18.2.0",
"@deepseek-ai/dsh-atomic-write": ">=0.1.1-rc.1 || >=0.1.2-0"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-atomic-write": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-runtime": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-slots": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-locale": "^0.1.1-rc.2",
"@types/node": "^24.13.3",
"@types/react": "~18.3.1",
"@types/react-dom": "^18.3.1",
"clsx": "^2.1.1",
"lightningcss": "^1.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsdown": "^0.22.14",
"typescript": "^5.9.0"
},
"engines": {
"node": ">=22.18"
}
}