-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.82 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "agent-powerups",
"version": "0.4.2",
"description": "Local-first CLI for browsing, validating, running, and explicitly writing agent powerups.",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/yeaight7/agent-powerups.git"
},
"bugs": {
"url": "https://github.com/yeaight7/agent-powerups/issues"
},
"homepage": "https://github.com/yeaight7/agent-powerups",
"keywords": [
"claude-code",
"codex",
"ai-agents",
"skills",
"mcp",
"developer-tools",
"cli",
"gemini-cli",
"gemini",
"skill-pack",
"plugin",
"gemini-cli-extension"
],
"bin": {
"apx": "dist/cli/apx.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/",
"!dist/test/",
"skills/",
"!skills/worktree-session-manager/",
"!skills/graphify/references/",
"!skills/graphify/graphify-out/",
"commands/",
"hooks/",
"mcp/",
"agents-md/",
"workflows/",
"docs/",
"!docs/feature-retrieval-checklist.md",
"!docs/plugin-expansion-contract.md",
"!docs/superpowers/",
"examples/",
"catalog.json",
"scripts/*.py",
"plugins/",
"!plugins/software-engineering/skills/worktree-session-manager/",
"plugin-bundles.json",
"profiles.json",
".codex-plugin/",
".claude-plugin/",
"README.md",
"LICENSE",
"SECURITY.md",
"CONTRIBUTING.md",
"ACKNOWLEDGEMENTS.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/postbuild-apx-wrapper.mjs",
"test": "npm run build && node scripts/run-node-tests.mjs",
"release:check": "node scripts/release-check.mjs"
},
"dependencies": {
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.9.2",
"typescript": "^5.9.3"
}
}