-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
{
"name": "@qtjg/dsh-plugin-git-context",
"version": "0.2.0",
"description": "A DeepSeek Harness plugin that exposes bounded Git status, diff, and log context to the model.",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qtjg/dsh-plugin-git-context.git"
},
"bugs": {
"url": "https://github.com/qtjg/dsh-plugin-git-context/issues"
},
"homepage": "https://github.com/qtjg/dsh-plugin-git-context#readme",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"README.md",
"LICENSE"
],
"license": "MIT",
"engines": {
"node": ">=22.19.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=0.1.0-rc.8",
"@deepseek-ai/dsh-subprocess": ">=0.1.0-rc.8",
"@deepseek-ai/dsh-tools": ">=0.1.0-rc.8",
"@deepseek-ai/dsh-llm": ">=0.1.0-rc.8",
"@deepseek-ai/schemastery": ">=3.0.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-subprocess": "0.1.0-rc.8",
"@deepseek-ai/dsh-subprocess-local": "0.1.0-rc.8",
"@deepseek-ai/dsh-llm": "0.1.0-rc.8",
"@deepseek-ai/dsh-system-prompt": "0.1.0-rc.8",
"@deepseek-ai/dsh-tools": "0.1.0-rc.8",
"@deepseek-ai/schemastery": "3.18.1",
"@types/node": "^22.20.0",
"oxlint": "^1.76.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc -b tsconfig.json --pretty false",
"test": "vitest run",
"lint": "oxlint src tests"
}
}