-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.79 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
{
"name": "dsh-share",
"version": "0.3.1",
"description": "Share DSH Q&As or selected conversation groups as PNG or Markdown.",
"author": "hellodigua",
"keywords": [
"deepseek-harness",
"dsh",
"plugin",
"share-image",
"screenshot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hellodigua/dsh-share.git"
},
"homepage": "https://github.com/hellodigua/dsh-share#readme",
"bugs": {
"url": "https://github.com/hellodigua/dsh-share/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"files": [
"assets/readme",
"lib",
"cordis.patch.yml",
"LICENSE",
"README.md",
"README.en.md",
"CHANGELOG.md",
"THIRD_PARTY_LICENSES.md"
],
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/types/client/index.d.ts",
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pnpm run clean && tsdown && tsc -p tsconfig.json",
"clean": "node scripts/clean.mjs",
"prepack": "pnpm run build",
"release:check": "pnpm run verify && node scripts/check-package.mjs && git diff --check",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"verify": "pnpm typecheck && pnpm test && pnpm build"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-conversation",
"@deepseek-ai/dsh-client-ui-primitives"
],
"platform": "web"
}
},
"peerDependencies": {
"@deepseek-ai/dsh-client-locale": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.0-rc.6",
"react": "^18.2.0"
},
"devDependencies": {
"@deepseek-ai/dsh-client-locale": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-conversation": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
"@types/node": "^24.0.0",
"@types/react": "~18.3.1",
"@types/turndown": "^5.0.6",
"html-to-image": "^1.11.13",
"jsdom": "^26.1.0",
"react": "^18.2.0",
"tsdown": "^0.22.2",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"packageManager": "pnpm@11.7.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}