-
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.61 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.61 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-web-ui-notify",
"version": "0.1.4",
"description": "Desktop notifications for DeepSeek Harness approvals, questions, and turn completion — so neither DSH nor you end up waiting while you browse another tab.",
"keywords": [
"deepseek",
"deepseek-harness",
"dsh-plugin",
"dsh-bundle",
"web-ui",
"desktop-notification",
"approval",
"notify"
],
"type": "module",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./client": "./lib/client.js",
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib",
"src",
"cordis.patch.yml",
"README.md",
"README.zh.md",
"README.i18n.yaml",
"CHANGELOG.md",
"LICENSE"
],
"license": "BSD-3-Clause",
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omdsh-dev/dsh-web-ui-notify.git"
},
"homepage": "https://github.com/omdsh-dev/dsh-web-ui-notify#readme",
"bugs": {
"url": "https://github.com/omdsh-dev/dsh-web-ui-notify/issues"
},
"scripts": {
"build": "node scripts/build.mjs",
"test": "vitest run",
"verify:i18n": "node scripts/verify-i18n.mjs"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-ui-slots",
"@deepseek-ai/dsh-client-ui-conversation",
"@deepseek-ai/dsh-client-ui-session"
],
"platform": "web"
}
}
}