-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.12 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
{
"name": "@skyf0xx/hedgehog",
"version": "6.2.5",
"description": "Install the Hedgehog build discipline (agents + skills) into a repo, for Claude Code, Cursor, or Gemini CLI.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/skyf0xx/hedgehog.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"hedgehog": "bin/cli.mjs"
},
"scripts": {
"lint": "eslint .",
"check": "npm run lint && node scripts/check.mjs",
"repro": "node --experimental-sqlite repro/run-all.mjs",
"release": "node scripts/bump-package-version.mjs",
"release:plugin": "node scripts/bump-plugin-version.mjs"
},
"files": [
"bin",
"src/agents",
"src/db",
"src/hosts",
"src/registry",
"src/skills",
"src/templates",
"vendor-skills/BMAD"
],
"engines": {
"node": ">=22.5.0"
},
"keywords": [
"claude",
"claude-code",
"cursor",
"gemini-cli",
"agents-md",
"agents",
"skills",
"scaffold",
"hedgehog"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.9.1"
}
}