mirror of
https://github.com/JuliusBrussee/caveman.git
synced 2026-08-11 13:21:09 +02:00
The caveman.skill ZIP is regenerated by CI on every push and lived at the repo root, where users mistook it for an editable source. Moving it to dist/ makes its build-product nature obvious while keeping it tracked so GitHub release links and npm packaging keep working. Updates: - git mv caveman.skill -> dist/caveman.skill - .github/workflows/sync-skill.yml rebuild step now writes to dist/ - .gitignore ignores dist/* but allows dist/caveman.skill - package.json files array includes dist/caveman.skill for npm pack - CONTRIBUTING.md and tests/verify_repo.py path references updated Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
807 B
JSON
38 lines
807 B
JSON
{
|
|
"name": "caveman-installer",
|
|
"version": "0.1.0",
|
|
"description": "Caveman installer — detects your AI coding agents and installs caveman for each one.",
|
|
"license": "MIT",
|
|
"author": "Julius Brussee",
|
|
"homepage": "https://github.com/JuliusBrussee/caveman",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/JuliusBrussee/caveman.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/JuliusBrussee/caveman/issues"
|
|
},
|
|
"bin": {
|
|
"caveman": "./bin/install.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"test": "node --test tests/installer/*.test.mjs"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"hooks/",
|
|
"agents/",
|
|
"skills/",
|
|
"rules/",
|
|
"tools/",
|
|
"plugins/",
|
|
"commands/",
|
|
"dist/caveman.skill",
|
|
"README.md",
|
|
"LICENSE"
|
|
]
|
|
}
|