-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.82 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
{
"name": "dsh-git-credentials",
"version": "0.1.0",
"type": "module",
"description": "Out-of-tree dsh plugin: GitLab, GitHub, Gitee, Gitea, and Bitbucket tokens stay out of the model context, stored encrypted (AES-256-GCM) in a plugin-owned file; the model calls forge API tools on demand, and the web settings page manages sites and tokens.",
"keywords": [
"deepseek-harness",
"dsh",
"dsh-plugin",
"cordis",
"gitlab",
"github",
"gitee",
"gitea",
"bitbucket",
"credentials",
"plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/revive/dsh-git-credentials.git"
},
"homepage": "https://github.com/revive/dsh-git-credentials",
"bugs": {
"url": "https://github.com/revive/dsh-git-credentials/issues"
},
"scripts": {
"gen:tsconfig": "node tools/gen-tsconfig.mjs",
"typecheck": "tsc -p tsconfig.json",
"build": "tsdown",
"smoke": "node --import \"$DSH_REPO/node_modules/tsx/dist/esm/index.mjs\" smoke.ts",
"pack": "pnpm pack"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./invariant": "./lib/invariant.js",
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"cordis.patch.yml"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web"
}
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1-rc.1",
"@deepseek-ai/dsh-tools": "^0.0.1-rc.1",
"@deepseek-ai/schemastery": "^3.18.1-rc.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "0.1.0-rc.5",
"@deepseek-ai/dsh-tools": "0.1.0-rc.5",
"@deepseek-ai/dsh-schemastery": "0.1.0-rc.5",
"@deepseek-ai/dsh-app-boot": "0.1.0-rc.5",
"@deepseek-ai/dsh-invariants": "0.1.0-rc.5"
}
}