-
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.64 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.64 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": "@muou000/dsh-codegraph",
"version": "0.1.0",
"description": "Workspace-scoped CodeGraph MCP integration for DeepSeek Harness",
"repository": {
"type": "git",
"url": "git+https://github.com/muou000/dsh-codegraph.git"
},
"homepage": "https://github.com/muou000/dsh-codegraph#readme",
"bugs": {
"url": "https://github.com/muou000/dsh-codegraph/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run --exclude tests/real-codegraph.spec.ts",
"test:integration": "vitest run tests/lifecycle.spec.ts tests/loader-composition.spec.ts",
"test:real": "vitest run tests/real-codegraph.spec.ts",
"eval:pack": "node evals/pack-smoke.mjs",
"check": "pnpm run typecheck && pnpm run test && pnpm run build",
"prepare": "pnpm run build",
"prepack": "pnpm run typecheck && pnpm run test"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"packageManager": "pnpm@10.33.0",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-mcp-client": "^0.1.2-alpha.1",
"@deepseek-ai/dsh-subprocess": "^0.1.2-alpha.1",
"@deepseek-ai/dsh-system-prompt": "^0.1.1-rc.2 || ^0.1.2-alpha.1",
"@deepseek-ai/dsh-tools": "^0.1.1-rc.2 || ^0.1.2-alpha.1"
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/cordis-plugin-include": "1.0.6",
"@deepseek-ai/cordis-plugin-loader": "1.0.2",
"@deepseek-ai/dsh-attachment": "0.1.2-alpha.2",
"@deepseek-ai/dsh-invariants": "0.1.2-alpha.2",
"@deepseek-ai/dsh-llm": "0.1.2-alpha.2",
"@deepseek-ai/dsh-mcp-client": "0.1.2-alpha.2",
"@deepseek-ai/dsh-scope": "0.1.2-alpha.2",
"@deepseek-ai/dsh-subprocess": "0.1.2-alpha.2",
"@deepseek-ai/dsh-subprocess-local": "0.1.2-alpha.2",
"@deepseek-ai/dsh-system-prompt": "0.1.2-alpha.2",
"@deepseek-ai/dsh-timeout": "0.1.2-alpha.2",
"@deepseek-ai/dsh-tools": "0.1.2-alpha.2",
"@modelcontextprotocol/sdk": "^1.12.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.20.0",
"js-yaml": "^4.1.1",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8",
"zod": "^4.4.3"
}
}