-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 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": "code-abyss",
"version": "2.1.2",
"description": "为 Claude Code / Codex CLI 注入邪修人格、4种可切换输出风格与 56 篇攻防工程秘典",
"keywords": [
"claude",
"claude-code",
"codex",
"cli",
"ai",
"assistant",
"configuration"
],
"author": "telagod",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/telagod/code-abyss.git"
},
"homepage": "https://github.com/telagod/code-abyss#readme",
"bugs": {
"url": "https://github.com/telagod/code-abyss/issues"
},
"bin": {
"code-abyss": "bin/install.js"
},
"files": [
"bin/",
"config/",
"output-styles/",
"packs/",
"skills/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "jest",
"verify:skills": "node bin/verify-skills-contract.js",
"packs:init": "node bin/packs.js init",
"packs:bootstrap": "node bin/packs.js bootstrap",
"packs:update": "node bin/packs.js update",
"packs:check": "node bin/packs.js check",
"packs:diff": "node bin/packs.js diff",
"packs:report": "node bin/packs.js report",
"packs:vendor:pull": "node bin/packs.js vendor-pull",
"packs:vendor:sync": "node bin/packs.js vendor-sync",
"packs:vendor:status": "node bin/packs.js vendor-status",
"packs:vendor:dirty": "node bin/packs.js vendor-dirty",
"packs:uninstall": "node bin/packs.js uninstall"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1"
},
"devDependencies": {
"jest": "^30.2.0"
}
}