Files
antigravity-superpowers/package.json
To Nguyen 208358e5bb v0.3.0: Fix slash commands — add 9 workflows for Antigravity IDE
- Fix workflow frontmatter: remove 'name:' field (Antigravity uses
  filename as command name), add numbered steps format
- Add 6 new workflows: /debug, /tdd, /review, /verify, /finish-branch,
  /worktree — now 9 slash commands total
- Add workflow frontmatter validation to validate command
- Update check-pack.mjs for new workflow files
- Bump version to 0.3.0

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 08:26:12 +07:00

30 lines
633 B
JSON

{
"name": "antigravity-superpowers",
"version": "0.3.0",
"description": "CLI to initialize the Antigravity Superpowers .agent profile",
"type": "module",
"bin": {
"antigravity-superpowers": "bin/antigravity-superpowers.js"
},
"files": [
"bin/",
"src/",
"templates/.agent/**",
"README.md"
],
"scripts": {
"test": "node --test 'tests/**/*.test.mjs'",
"smoke:pack": "node scripts/check-pack.mjs",
"prepublishOnly": "npm test && npm run smoke:pack"
},
"keywords": [
"antigravity",
"superpowers",
"cli"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
}
}