-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.25 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
{
"name": "@omdsh/dsh-hub",
"version": "0.1.0-rc.1",
"private": true,
"description": "OMDSH community extension hub built on official DeepSeek Harness contracts",
"keywords": [
"dsh-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/omdsh-dev/dsh-hub.git"
},
"homepage": "https://github.com/omdsh-dev/dsh-hub#readme",
"bugs": {
"url": "https://github.com/omdsh-dev/dsh-hub/issues"
},
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./web-api": {
"types": "./dist/web-api.d.ts",
"default": "./dist/web-api.mjs"
},
"./registry": {
"types": "./dist/registry.d.ts",
"default": "./dist/registry.mjs"
},
"./recipes": {
"types": "./dist/recipes.d.ts",
"default": "./dist/recipes.mjs"
},
"./agent-ecosystem": {
"types": "./dist/agent-ecosystem.d.ts",
"default": "./dist/agent-ecosystem.mjs"
},
"./agent-tools": {
"types": "./dist/agent-tools.d.ts",
"default": "./dist/agent-tools.mjs"
},
"./management": {
"types": "./dist/management.d.ts",
"default": "./dist/management.mjs"
},
"./workshop-bridge": {
"types": "./dist/workshop-bridge.d.ts",
"default": "./dist/workshop-bridge.mjs"
},
"./client": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"./sdk": {
"types": "./dist/sdk.d.ts",
"default": "./dist/sdk.mjs"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"dist/",
"cordis.patch.yml",
"README.md",
"README.zh.md",
"docs/",
"LICENSE"
],
"scripts": {
"check": "node --check scripts/vendor-workshop-snapshot.mjs && node --check dist/index.mjs && node --check dist/registry.mjs && node --check dist/recipes.mjs && node --check dist/agent-ecosystem.mjs && node --check dist/agent-tools.mjs && node --check dist/management.mjs && node --check dist/workshop-bridge.mjs && node --check dist/web-api.mjs && node --check dist/client.js",
"test": "node --test",
"registry:check": "node scripts/check-registry.mjs",
"workshop:vendor": "node scripts/vendor-workshop-snapshot.mjs",
"npm:compat": "node scripts/check-npm-compatibility.mjs",
"validate": "npm run check && npm run npm:compat && npm run registry:check && npm test",
"pack:check": "node scripts/check-release-artifact.mjs"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1-rc.4",
"@deepseek-ai/dsh-client-locale": "0.0.1-rc.5",
"@deepseek-ai/dsh-client-runtime": "0.0.1-rc.5",
"@deepseek-ai/dsh-client-ui-settings": "0.0.1-rc.5",
"@deepseek-ai/dsh-client-ui-slots": "0.0.1-rc.5",
"@deepseek-ai/dsh-host-webserver": "0.0.1-rc.5"
},
"peerDependencies": {
"@omdsh/runtime": "0.0.1-private.0"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-locale"
],
"platform": "web"
}
}
}