forked from CooStack/dsh-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.78 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
{
"name": "@dsh-plugin/dsh-code-review",
"version": "0.3.2",
"description": "Codex-style per-turn code change summaries, review tab, and guarded undo for DeepSeek Harness",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dsh-plugins/dsh-code-review.git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"src",
"cordis.patch.yml",
"README.md",
"README.zh-CN.md"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings-plugins",
"@dsh-plugin/dsh-loader",
"@dsh-plugin/dsh-better-sidebar-loader"
],
"platform": "web"
}
},
"scripts": {
"build:client": "tsdown --config tsdown.client.config.mjs",
"build": "tsc -p tsconfig.json && npm run build:client",
"prepack": "npm run build",
"test": "node --test test/*.test.mjs"
},
"dependencies": {
"schemastery": "^3.18.0",
"@shikijs/langs": "^4.4.3",
"shiki": "^4.4.3"
},
"peerDependencies": {
"@dsh-plugin/dsh-loader": "^1.3.0",
"@dsh-plugin/dsh-better-sidebar-loader": "^0.14.0"
},
"devDependencies": {
"@dsh-plugin/dsh-loader": "^1.3.0",
"@types/node": "^24.13.3",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"tsdown": "^0.22.2",
"typescript": "^5.7.0"
},
"keywords": [
"dsh",
"deepseek-harness",
"diff",
"review",
"undo"
],
"license": "GPL-3.0-only"
}