-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.06 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
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@perrylink/dsh-github",
"version": "0.6.1",
"description": "Official-grade GitHub CI for DeepSeek Harness: composite action (review PRs / fix CI / report), polling PR review bot with idempotent inline comments, a status-check gate, and approval-gated PR/issue/repo/file tools",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"files": [
"lib",
"action.yml",
"scripts",
"cordis.patch.yml",
"README.md",
"README.zh-CN.md",
"README.es.md",
"README.pt.md",
"README.hi.md",
"LICENSE"
],
"scripts": {
"build": "tsc --noEmitOnError",
"prepare": "node scripts/prepare.mjs",
"prepublishOnly": "npm run build && npm test",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"check:readmes": "node scripts/check-readmes.mjs"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"github",
"github-actions",
"pull-request",
"code-review",
"ci",
"issue-tracker"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/PerryLink/dsh-github"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"dshWorkshop": {
"schema": "omdsh-workshop-package/v1",
"type": "plugin",
"integration": {
"protocol": "harness-profile",
"artifact": "cordis.patch.yml"
},
"install": {
"mode": "transactional",
"adapter": "profile-bundle",
"failurePolicy": "generation-rollback",
"touchesCurrentBeforeActivation": false
},
"lifecycle": {
"activation": "restart-profile",
"dispose": "supported"
},
"permissions": [
"network:outbound",
"filesystem:write"
],
"compatibility": {
"dshVersions": [
"0.1.0-rc.6"
]
},
"capability": {
"id": "gh-ci",
"kind": "command",
"invocation": "/ci",
"expected": "runs the review engine for the requested PR, posts idempotent inline review comments and publishes the status-check verdict (success / changes needed)"
},
"evidence": {
"install": null,
"failureIsolation": null,
"hotReload": null,
"remove": null
}
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.5",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.5",
"@deepseek-ai/dsh-session": "^0.1.0-rc.5",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.5"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-credentials": "0.1.0-rc.6",
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
"@deepseek-ai/dsh-session": "0.1.0-rc.6",
"@deepseek-ai/dsh-tools": "0.1.0-rc.6",
"@deepseek-ai/schemastery": "3.18.1",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.2.0"
}
}