- Fix npm test glob pattern for Node >= 21 compatibility - Add --version/-v flag to display package version - Add validate command: run 78 profile checks (files, skills, frontmatter, legacy patterns, AGENTS mapping) - Add list command: display all 13 bundled skills with descriptions - Add --dry-run/-n flag for init: preview files without copying - Add --backup/-b flag for init --force: backup existing .agent before overwrite - Add name field to workflow frontmatter (brainstorm, execute-plan, write-plan) - Expand smoke check to cover all 13 skills and new command files - Increase test coverage from 3 to 20 tests (cli, init, validate) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
633 B
JSON
30 lines
633 B
JSON
{
|
|
"name": "antigravity-superpowers",
|
|
"version": "0.2.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"
|
|
}
|
|
}
|