-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.3 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
{
"name": "dsh-book2skill",
"version": "0.1.2",
"description": "DSH book-to-skill plugin: a 5-stage long task (fetch → parse → understand → generate → install) with 3 human gates, host tools for the agent and a browser timeline panel",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "restricted"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/types/client/index.d.ts",
"default": "./lib/client.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-ui-conversation",
"@deepseek-ai/dsh-client-ui-renderer",
"@deepseek-ai/dsh-client-ui-slots"
]
}
},
"scripts": {
"clean": "node scripts/clean.mjs",
"setup:dsh-workspace": "node scripts/setup-dsh-workspace.mjs",
"build": "node scripts/build.mjs",
"typecheck": "npm run typecheck:src && npm run typecheck:tests",
"typecheck:src": "node node_modules/typescript/bin/tsc -p tsconfig.json --noEmit",
"typecheck:tests": "node node_modules/typescript/bin/tsc -p tsconfig.test.json --noEmit",
"test": "node --test tests/*.test.ts",
"prepack": "npm run clean && npm run typecheck && npm test && npm run build"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"dependencies": {
"zod": "^3.23.8"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1-rc.1",
"@deepseek-ai/dsh-client-ui-conversation": ">=0.1.0-rc.3 <0.2.0",
"@deepseek-ai/dsh-client-ui-renderer": ">=0.1.0-rc.3 <0.2.0",
"@deepseek-ai/dsh-client-ui-slots": ">=0.1.0-rc.3 <0.2.0",
"@deepseek-ai/dsh-host-directory-picker": ">=0.1.0-rc.3 <0.2.0",
"@deepseek-ai/dsh-host-webserver": ">=0.1.0-rc.3 <0.2.0",
"@deepseek-ai/dsh-shell": ">=0.1.0-rc.3 <0.2.0",
"@deepseek-ai/dsh-storage-domain": ">=0.1.0-rc.3 <0.2.0",
"@deepseek-ai/dsh-tools": ">=0.1.0-rc.3 <0.2.0",
"@deepseek-ai/dsh-web": ">=0.1.0-rc.3 <0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": { "optional": true },
"@deepseek-ai/dsh-client-ui-conversation": { "optional": true },
"@deepseek-ai/dsh-client-ui-renderer": { "optional": true },
"@deepseek-ai/dsh-client-ui-slots": { "optional": true },
"@deepseek-ai/dsh-host-directory-picker": { "optional": true },
"@deepseek-ai/dsh-host-webserver": { "optional": true },
"@deepseek-ai/dsh-shell": { "optional": true },
"@deepseek-ai/dsh-storage-domain": { "optional": true },
"@deepseek-ai/dsh-tools": { "optional": true },
"@deepseek-ai/dsh-web": { "optional": true },
"react": { "optional": true },
"react-dom": { "optional": true }
},
"devDependencies": {
"@types/node": "22.20.0",
"@types/react": "18.3.31",
"@types/react-dom": "18.3.7",
"lightningcss": "1.32.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tsdown": "0.22.2",
"typescript": "6.0.3"
},
"files": [
"lib",
"scripts",
"assets",
"cordis.patch.yml",
"README.md",
"LICENSE"
]
}