@benz-ai-x/dsh-md-preview 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,92 @@
1
+ {
2
+ "name": "@benz-ai-x/dsh-md-preview",
3
+ "version": "0.1.0",
4
+ "description": "DSH markdown preview: clicking a markdown document in the conversation opens a rendered preview panel docked to the right of the chat.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/benz-ai-x/dsh-md-preview.git"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "keywords": [
14
+ "deepseek-harness",
15
+ "dsh",
16
+ "plugin",
17
+ "markdown",
18
+ "preview"
19
+ ],
20
+ "type": "module",
21
+ "main": "./lib/index.js",
22
+ "types": "./lib/types/index.d.ts",
23
+ "exports": {
24
+ ".": {
25
+ "types": "./lib/types/index.d.ts",
26
+ "default": "./lib/index.js"
27
+ },
28
+ "./client": {
29
+ "types": "./lib/types/client/index.d.ts",
30
+ "default": "./lib/client.js"
31
+ },
32
+ "./remote": {
33
+ "types": "./lib/types/typert/remote-client.d.ts",
34
+ "default": "./lib/typert/remote-client.js"
35
+ },
36
+ "./cordis.patch.yml": "./cordis.patch.yml",
37
+ "./package.json": "./package.json"
38
+ },
39
+ "files": [
40
+ "lib/index.js",
41
+ "lib/client.js",
42
+ "lib/typert/remote-client.js",
43
+ "lib/types/**/*.d.ts",
44
+ "cordis.patch.yml",
45
+ "README.md"
46
+ ],
47
+ "dsh": {
48
+ "bundle": {
49
+ "patch": "./cordis.patch.yml"
50
+ },
51
+ "client": {
52
+ "inject": [
53
+ "@deepseek-ai/dsh-api-remotes",
54
+ "@deepseek-ai/dsh-client-locale",
55
+ "@deepseek-ai/dsh-client-ui-chat",
56
+ "@deepseek-ai/dsh-client-ui-renderer"
57
+ ],
58
+ "platform": "web"
59
+ }
60
+ },
61
+ "packageManager": "pnpm@11.17.0",
62
+ "engines": {
63
+ "node": "^22.19.0 || >=24.0.0"
64
+ },
65
+ "scripts": {
66
+ "context:check": "node scripts/verify-dsh-context.mjs",
67
+ "context:check:strict": "node scripts/verify-dsh-context.mjs --require-source",
68
+ "context:sync": "node scripts/verify-dsh-context.mjs --sync-links --require-source && pnpm install --no-frozen-lockfile",
69
+ "typecheck": "tsc -p tsconfig.json --noEmit",
70
+ "test": "vitest run",
71
+ "build": "tsc -p tsconfig.json && tsdown",
72
+ "build:host": "tsc -p tsconfig.json",
73
+ "build:client": "tsdown",
74
+ "watch:client": "tsdown --watch",
75
+ "built:check": "node scripts/verify-built.mjs",
76
+ "pack:publishable": "node scripts/pack.mjs",
77
+ "publish:registry": "node scripts/pack.mjs --publish",
78
+ "verify": "pnpm context:check:strict && pnpm typecheck && pnpm test && pnpm build && pnpm built:check"
79
+ },
80
+ "dependencies": {
81
+ "@deepseek-ai/schemastery": "3.18.1",
82
+ "zod": "^4.4.3"
83
+ },
84
+ "peerDependencies": {
85
+ "@deepseek-ai/cordis": "^4.0.1",
86
+ "@deepseek-ai/dsh-client-store": "0.1.2-alpha.3",
87
+ "@deepseek-ai/dsh-client-ui-primitives": "0.1.2-alpha.3",
88
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.2-alpha.3",
89
+ "@deepseek-ai/dsh-session": "0.1.2-alpha.3",
90
+ "@deepseek-ai/dsh-typert-protocol": "0.1.2-alpha.3"
91
+ }
92
+ }