-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.43 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "dsh-plugin-git-bash",
"version": "0.3.1",
"description": "Use Git for Windows Bash as the default DSH shell with restricted-mode support",
"keywords": [
"deepseek-harness",
"dsh",
"plugin",
"git-bash",
"sandbox",
"windows"
],
"homepage": "https://github.com/inmny/dsh-git-bash#readme",
"bugs": {
"url": "https://github.com/inmny/dsh-git-bash/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inmny/dsh-git-bash.git"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./agents": {
"types": "./lib/agents.d.ts",
"default": "./lib/agents.js"
},
"./discovery": {
"types": "./lib/discovery.d.ts",
"default": "./lib/discovery.js"
},
"./client": "./client.js",
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib",
"client.js",
"native/bin/win32-x64/msys-token-guard.exe",
"native/bin/win32-x64/msys-token-guard-hook.dll",
"native/CMakeLists.txt",
"native/*.cpp",
"native/vendor/detours",
"scripts/build-native.mjs",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-ui-tool",
"@deepseek-ai/dsh-client-ui-settings-plugins",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-ui-primitives",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-api-remotes"
]
}
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('lib', { recursive: true, force: true })\"",
"build:native": "node scripts/build-native.mjs",
"build": "pnpm run build:native && pnpm run clean && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "pnpm run build && node --test",
"pack:check": "npm pack --dry-run",
"prepack": "pnpm run build",
"prepublishOnly": "pnpm test"
},
"peerDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-agent": "0.1.0-rc.7",
"@deepseek-ai/dsh-bash-local": "0.1.0-rc.7",
"@deepseek-ai/dsh-sandbox": "0.1.0-rc.7",
"@deepseek-ai/dsh-sandbox-policy": "0.1.0-rc.7",
"@deepseek-ai/dsh-shell": "0.1.0-rc.7",
"@deepseek-ai/dsh-system-prompt": "0.1.0-rc.7",
"@deepseek-ai/dsh-tools": "0.1.0-rc.7"
},
"dependencies": {
"@deepseek-ai/schemastery": "3.18.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-agent": "0.1.0-rc.7",
"@deepseek-ai/dsh-bash-local": "0.1.0-rc.7",
"@deepseek-ai/dsh-sandbox": "0.1.0-rc.7",
"@deepseek-ai/dsh-sandbox-local": "0.1.0-rc.7",
"@deepseek-ai/dsh-sandbox-policy": "0.1.0-rc.7",
"@deepseek-ai/dsh-sandbox-windows-acl": "0.1.0-rc.7",
"@deepseek-ai/dsh-shell": "0.1.0-rc.7",
"@deepseek-ai/dsh-subprocess-local": "0.1.0-rc.7",
"@deepseek-ai/dsh-system-prompt": "0.1.0-rc.7",
"@deepseek-ai/dsh-tools": "0.1.0-rc.7",
"@types/node": "24.10.1",
"typescript": "5.9.3"
},
"packageManager": "pnpm@11.9.0"
}