-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.05 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
{
"name": "dsh-codegraph",
"version": "0.2.0",
"description": "DSH profile bundle exposing the codegraph CLI as eight model-facing code-intelligence tools: symbol search, callers/callees, impact analysis, area exploration, symbol/file reading, index status and sync.",
"type": "module",
"license": "MIT",
"author": "errrepe",
"homepage": "https://github.com/errrepe/dsh-codegraph-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/errrepe/dsh-codegraph-plugin.git"
},
"bugs": {
"url": "https://github.com/errrepe/dsh-codegraph-plugin/issues"
},
"keywords": [
"dsh",
"deepseek-harness",
"dsh-plugin",
"codegraph",
"code-intelligence",
"static-analysis"
],
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./quote": "./lib/quote.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"scripts": {
"check": "node --check lib/index.js && node --check lib/client.js && node --check lib/quote.js",
"test": "node test/quote.test.js"
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-settings": ">=0.1.0-rc.6",
"@deepseek-ai/dsh-tools": "*",
"@deepseek-ai/dsh-system-prompt": "*"
},
"peerDependenciesMeta": {
"@deepseek-ai/dsh-settings": {
"optional": true
},
"@deepseek-ai/dsh-tools": {
"optional": true
},
"@deepseek-ai/dsh-system-prompt": {
"optional": true
}
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-settings": "0.1.1-rc.2",
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
"@deepseek-ai/schemastery": "^3.18.1"
},
"files": [
"lib",
"test",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-ui-conversation"
]
}
}
}