forked from obra/superpowers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "@complexthings/superpowers-agent",
"version": "8.4.1",
"description": "Superpowers agent CLI — skills system for AI coding agents",
"type": "module",
"bin": {
"superpowers-agent": ".agents/superpowers-agent",
"superpowers": ".agents/superpowers-agent"
},
"files": [
".agents/superpowers-agent",
".agents/templates",
".agents/docs",
".agents/skills",
".agents/prompts",
".agents/plans",
".agents/superpowers-bootstrap.md",
"skills",
"hooks",
".github",
"AGENTS.md",
"README.md",
"LICENSE"
],
"engines": {
"node": "^20 || ^22 || ^24"
},
"scripts": {
"postinstall": "node .agents/superpowers-agent bootstrap --no-update 2>/dev/null || true"
},
"author": {
"name": "Greg Harvell",
"email": "greg.harvell@complexthings.com",
"url": "https://github.com/complexthings"
},
"repository": {
"type": "git",
"url": "https://github.com/complexthings/superpowers.git"
},
"bugs": {
"url": "https://github.com/complexthings/superpowers/issues"
},
"license": "MIT",
"keywords": [
"superpowers",
"ai-agent",
"skills",
"cli",
"coding-agent"
]
}