-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.41 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
{
"name": "@dhicoc/dsh-reverse-skill",
"description": "Complete reverse-skill (87 skills) as a DeepSeek Harness Cordis plugin — reverse engineering, authorized pentesting and security research skill router pack.",
"version": "1.0.5",
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib",
"skills",
"CTF-Sandbox-Orchestrator",
"cordis.patch.yml"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dhicoc/dsh-reverse-skill.git"
},
"homepage": "https://github.com/dhicoc/dsh-reverse-skill#readme",
"bugs": {
"url": "https://github.com/dhicoc/dsh-reverse-skill/issues"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"keywords": [
"deepseek",
"dsh",
"cordis",
"plugin",
"skill",
"reverse-engineering",
"pentest",
"security-research",
"ctf"
],
"scripts": {
"build": "tsc",
"test": "npm run build && node _selftest.mjs",
"prepublishOnly": "tsc"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-skill": "^0.0.1-rc.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-skill": "^0.0.1-rc.1",
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
}
}