-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.52 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
119
120
{
"name": "dsh-notification",
"description": "Browser desktop notifications when the DeepSeek Harness finishes a turn: configurable per-outcome toggles and include/exclude keyword rules, shown through the browser Notification API.",
"version": "0.1.4",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/types/client/index.d.ts",
"default": "./lib/client.js"
},
"./invariant": {
"types": "./lib/types/invariant.d.ts",
"default": "./lib/invariant.js"
},
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-ui-slots",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-locale"
]
}
},
"files": [
"lib",
"cordis.patch.yml",
"dsh.plugin.json",
"README.md",
"README.zh.md",
"LICENSE"
],
"scripts": {
"build": "node build.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "pnpm run typecheck && pnpm run test && pnpm run build"
},
"peerDependencies": {
"@deepseek-ai/cordis": "*",
"@deepseek-ai/dsh-session": "*",
"@deepseek-ai/dsh-session-projection": "*",
"@deepseek-ai/dsh-invariants": "*",
"@deepseek-ai/dsh-client-runtime": "*",
"@deepseek-ai/dsh-client-store": "*",
"@deepseek-ai/dsh-client-ui-slots": "*",
"@deepseek-ai/dsh-client-ui-settings": "*",
"@deepseek-ai/dsh-client-locale": "*",
"react": "^18.2.0"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
},
"@deepseek-ai/dsh-session": {
"optional": true
},
"@deepseek-ai/dsh-session-projection": {
"optional": true
},
"@deepseek-ai/dsh-invariants": {
"optional": true
},
"@deepseek-ai/dsh-client-runtime": {
"optional": true
},
"@deepseek-ai/dsh-client-store": {
"optional": true
},
"@deepseek-ai/dsh-client-ui-slots": {
"optional": true
},
"@deepseek-ai/dsh-client-ui-settings": {
"optional": true
},
"@deepseek-ai/dsh-client-locale": {
"optional": true
},
"react": {
"optional": true
}
},
"devDependencies": {
"@deepseek-ai/cordis": "link:../dsh/vendor/cordis",
"@deepseek-ai/dsh-session": "link:../dsh/packages/core/session",
"@deepseek-ai/dsh-session-projection": "link:../dsh/packages/session/session-projection",
"@deepseek-ai/dsh-invariants": "link:../dsh/packages/runtime-diagnostics/invariants",
"@deepseek-ai/dsh-client-store": "link:../dsh/packages/client/store",
"@deepseek-ai/dsh-client-ui-slots": "link:../dsh/packages/client/ui-slots",
"@deepseek-ai/dsh-client-ui-settings": "link:../dsh/packages/client/ui-settings",
"@deepseek-ai/dsh-client-locale": "link:../dsh/packages/client/locale",
"@deepseek-ai/dsh-llm": "link:../dsh/packages/llm/llm",
"@deepseek-ai/schemastery": "link:../dsh/vendor/schemastery",
"@types/node": "^24.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitest/coverage-v8": "^4.1.8",
"esbuild": "^0.25.0",
"jsdom": "29.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8",
"@deepseek-ai/dsh-typert-registry": "link:../dsh/packages/typert/registry"
},
"dependencies": {
"zod": "^4.4.3"
}
}