-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.67 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
{
"name": "dsh-plugin-codegraph-sqlite",
"version": "0.1.5",
"description": "Read-only SQLite store for the DeepSeek Harness code-graph seam — serves structural queries from the schema-v4 graph at .codegraph/codegraph.db, the same on-disk format the codegraph CLI writes",
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"cordis",
"cordis-plugin",
"codegraph",
"code-graph",
"sqlite",
"code-intelligence",
"ai-agent"
],
"license": "MIT",
"author": "CC ZHAO",
"repository": {
"type": "git",
"url": "git+https://github.com/CC19990113/dsh-plugin-codegraph.git",
"directory": "packages/sqlite"
},
"homepage": "https://github.com/CC19990113/dsh-plugin-codegraph#readme",
"bugs": "https://github.com/CC19990113/dsh-plugin-codegraph/issues",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./invariant": {
"types": "./lib/invariant.d.ts",
"default": "./lib/invariant.js"
},
"./package.json": "./package.json"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1",
"dsh-plugin-codegraph-service": "workspace:^"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=4.0.1",
"@deepseek-ai/dsh-invariants": ">=0.1.0-rc.6",
"@deepseek-ai/dsh-llm": ">=0.1.0-rc.6"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-invariants": "0.1.0-rc.6",
"@deepseek-ai/dsh-llm": "0.1.0-rc.6"
}
}