-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 945 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 945 Bytes
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
{
"name": "dsh-plugins-finder",
"version": "0.1.9",
"description": "Find DeepSeek Harness plugins from the dsh.so registry — like find-skill, but for dsh plugins.",
"license": "Apache-2.0",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib", "cordis.patch.yml", "README.md", "assets"],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "tsc -p tsconfig.json",
"test": "node --test",
"verify:install": "node scripts/verify-install.mjs",
"verify": "npm test && npm run verify:install"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-tools": "0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1"
},
"devDependencies": {
"@deepseek-ai/dsh-tools": "0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1",
"typescript": "^5.5.0"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
}
}