-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.32 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
{
"name": "@easytz/dsh-git",
"version": "0.5.0",
"description": "Visual Git panel: changed files, staging, commits, push, branches, and per-commit detail",
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "node --test test/*.test.js"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-sidebar",
"@deepseek-ai/dsh-client-ui-layout"
]
}
},
"license": "MIT",
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-host-webserver": "^0.1.1-rc.2",
"@deepseek-ai/dsh-workspace": "^0.1.1-rc.2"
},
"keywords": [
"dsh-plugin",
"deepseek-harness",
"dsh",
"deepseek",
"git",
"sidebar-panel"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EasyTZ/dsh-git.git"
},
"homepage": "https://github.com/EasyTZ/dsh-git#readme",
"bugs": {
"url": "https://github.com/EasyTZ/dsh-git/issues"
},
"files": [
"lib",
"cordis.patch.yml"
]
}