-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.83 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
{
"name": "dsh-skills",
"description": "Global skill hub for dsh: aggregates Claude Code, project, and .skill-package skills into ~/.dsh/skills with reference/copy import and slash-menu usage",
"version": "0.1.1",
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"README.zh-CN.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CocoSgt/dsh-skills.git"
},
"type": "module",
"main": "lib/index.mjs",
"exports": {
".": {
"default": "./lib/index.mjs"
},
"./client": "./lib/client.js",
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-api-remotes"
],
"platform": "web"
}
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1"
},
"scripts": {
"build": "tsdown --config ./tsdown.config.ts",
"check": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-settings": "^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.0",
"react": "^18.3.0",
"tsdown": "0.22.2",
"typescript": "^5.9.2"
},
"license": "MIT",
"dependencies": {
"@deepseek-ai/dsh-typert-protocol": "^0.1.0-rc.5",
"@deepseek-ai/cordis": "^4.0.1"
},
"keywords": [
"dsh-plugin",
"dsh",
"deepseek",
"deepseek-harness",
"deepseek-ai",
"cordis",
"plugin",
"ai-agent",
"coding-agent",
"skills",
"skill-hub",
"slash-commands",
"claude-skills"
]
}