dsh-composition-doctor 0.1.0
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/LICENSE +21 -0
- package/README.md +70 -0
- package/cordis.patch.yml +3 -0
- package/dist/cli/main.js +133 -0
- package/dist/client/index.js +30 -0
- package/dist/client/report-view.js +92 -0
- package/dist/client.js +204 -0
- package/dist/core/composition-adapter.js +91 -0
- package/dist/core/diff.js +69 -0
- package/dist/core/preflight.js +179 -0
- package/dist/core/profile-reader.js +56 -0
- package/dist/core/redaction.js +25 -0
- package/dist/core/rules.js +110 -0
- package/dist/core/snapshot.js +59 -0
- package/dist/core/types.js +1 -0
- package/dist/plugin/index.js +75 -0
- package/dist/reports/json.js +3 -0
- package/dist/reports/markdown.js +14 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-composition-doctor",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Read-only DSH and Cordis composition diagnostics, snapshots, diffs, and isolated preflight.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "./dist/plugin/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./dist/plugin/index.js",
|
|
10
|
+
"./client": "./dist/client.js",
|
|
11
|
+
"./cli": "./dist/cli/main.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"cordis.patch.yml",
|
|
16
|
+
"README.md",
|
|
17
|
+
"LICENSE"
|
|
18
|
+
],
|
|
19
|
+
"dsh": {
|
|
20
|
+
"bundle": {
|
|
21
|
+
"patch": "./cordis.patch.yml"
|
|
22
|
+
},
|
|
23
|
+
"client": {
|
|
24
|
+
"platform": "web",
|
|
25
|
+
"inject": [
|
|
26
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
27
|
+
"@deepseek-ai/dsh-client-ui-settings",
|
|
28
|
+
"@deepseek-ai/dsh-client-ui-settings-plugins",
|
|
29
|
+
"@deepseek-ai/dsh-client-locale"
|
|
30
|
+
],
|
|
31
|
+
"immediately": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"type": "module",
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=20"
|
|
37
|
+
},
|
|
38
|
+
"packageManager": "pnpm@10.17.1",
|
|
39
|
+
"scripts": {
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"build": "tsc && node scripts/build-client.mjs",
|
|
43
|
+
"dsh-doctor": "node dist/cli/main.js"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@deepseek-ai/schemastery": "^3.18.1",
|
|
47
|
+
"semver": "^7.7.2",
|
|
48
|
+
"yaml": "^2.8.1"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^24.3.0",
|
|
52
|
+
"esbuild": "^0.28.2",
|
|
53
|
+
"typescript": "^5.9.2",
|
|
54
|
+
"vitest": "^3.2.4"
|
|
55
|
+
}
|
|
56
|
+
}
|