- package.json: yaml in devDependencies, repo url/bin from npm pkg fix - README, GETTING_STARTED, FAQ: fallback npx github:sickn33/antigravity-awesome-skills on 404 - publish-npm.yml: workflow on release published + workflow_dispatch - MAINTENANCE: bump package.json, publish to npm (manual + NPM_TOKEN CI) - release_cycle.sh: catalog step, version check, npm publish reminder - ISSUE_49_COMMENT.md: suggested reply for issue #49
37 lines
995 B
JSON
37 lines
995 B
JSON
{
|
|
"name": "antigravity-awesome-skills",
|
|
"version": "4.6.0",
|
|
"description": "626+ agentic skills for Claude Code, Gemini CLI, Cursor, Antigravity & more. Installer CLI.",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"validate": "python3 scripts/validate_skills.py",
|
|
"validate:strict": "python3 scripts/validate_skills.py --strict",
|
|
"index": "python3 scripts/generate_index.py",
|
|
"readme": "python3 scripts/update_readme.py",
|
|
"chain": "npm run validate && npm run index && npm run readme",
|
|
"catalog": "node scripts/build-catalog.js",
|
|
"build": "npm run chain && npm run catalog"
|
|
},
|
|
"devDependencies": {
|
|
"yaml": "^2.8.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sickn33/antigravity-awesome-skills.git"
|
|
},
|
|
"bin": {
|
|
"antigravity-awesome-skills": "bin/install.js"
|
|
},
|
|
"files": [
|
|
"bin"
|
|
],
|
|
"keywords": [
|
|
"claude-code",
|
|
"cursor",
|
|
"gemini-cli",
|
|
"antigravity",
|
|
"agentic-skills",
|
|
"ai-coding"
|
|
]
|
|
}
|