dsh-completion-guard 0.2.1
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/CHANGELOG.md +83 -0
- package/CHANGELOG.zh-CN.md +83 -0
- package/LICENSE +202 -0
- package/README.md +100 -0
- package/README.zh-CN.md +100 -0
- package/cordis.patch.yml +5 -0
- package/dist/domain/index.d.ts +2 -0
- package/dist/domain/index.js +3 -0
- package/dist/domain-BN3_AuUr.js +1997 -0
- package/dist/index-Dk4SkQ8H.d.ts +448 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +1125 -0
- package/docs/ARCHITECTURE.md +42 -0
- package/docs/COMPATIBILITY.md +169 -0
- package/docs/LOCAL_ACCEPTANCE.md +337 -0
- package/docs/PORTING_NOTES.md +14 -0
- package/docs/PRIVACY.md +23 -0
- package/docs/UPSTREAM_BASE.md +22 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-completion-guard",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "A task-contract and completion-certification layer for DeepSeek Harness.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/GreenLv/dsh-completion-guard.git"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "dist/index.js",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./domain": {
|
|
18
|
+
"types": "./dist/domain/index.d.ts",
|
|
19
|
+
"default": "./dist/domain/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"cordis.patch.yml",
|
|
25
|
+
"README.md",
|
|
26
|
+
"README.zh-CN.md",
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"docs",
|
|
29
|
+
"CHANGELOG.md",
|
|
30
|
+
"CHANGELOG.zh-CN.md"
|
|
31
|
+
],
|
|
32
|
+
"license": "Apache-2.0",
|
|
33
|
+
"dsh": {
|
|
34
|
+
"bundle": {
|
|
35
|
+
"patch": "./cordis.patch.yml"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=22"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
43
|
+
"@deepseek-ai/dsh-agent": "^0.1.1-rc.2",
|
|
44
|
+
"@deepseek-ai/dsh-commands": "^0.1.1-rc.2",
|
|
45
|
+
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
|
|
46
|
+
"@deepseek-ai/dsh-session": "^0.1.1-rc.2",
|
|
47
|
+
"@deepseek-ai/dsh-tools": "^0.1.1-rc.2"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsdown",
|
|
51
|
+
"lint": "oxlint src tests",
|
|
52
|
+
"test": "vitest run",
|
|
53
|
+
"typecheck": "tsc --noEmit",
|
|
54
|
+
"pack:check": "pnpm pack --dry-run --json"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
58
|
+
"@deepseek-ai/dsh-agent": "^0.1.1-rc.2",
|
|
59
|
+
"@deepseek-ai/dsh-commands": "^0.1.1-rc.2",
|
|
60
|
+
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
|
|
61
|
+
"@deepseek-ai/dsh-session": "^0.1.1-rc.2",
|
|
62
|
+
"@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
|
|
63
|
+
"@deepseek-ai/schemastery": "^3.18.1",
|
|
64
|
+
"@types/node": "^22.0.0",
|
|
65
|
+
"oxlint": "^1.20.0",
|
|
66
|
+
"tsdown": "^0.15.0",
|
|
67
|
+
"typescript": "^5.8.0",
|
|
68
|
+
"vitest": "^3.2.0"
|
|
69
|
+
}
|
|
70
|
+
}
|