mirror of
https://github.com/shipshitdev/skills.git
synced 2026-09-19 06:04:15 +08:00
e49ab7d84f
- Renamed all instances of `.agent/` to `.agents/` in documentation, scripts, and markdown files for consistency. - Adjusted related commands and file references to reflect the new session structure. - Ensured all skills and workflows are aligned with the updated directory naming convention.
47 lines
2.1 KiB
JSON
47 lines
2.1 KiB
JSON
{
|
|
"description": "100+ AI agent skills for indie developers - works with Claude Code, OpenAI Codex, and Cursor",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.3.14",
|
|
"husky": "9.1.7",
|
|
"lint-staged": "16.2.7",
|
|
"markdownlint-cli": "0.47.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"license": "MIT",
|
|
"lint-staged": {
|
|
"*.json": [
|
|
"bunx @biomejs/biome check --write --no-errors-on-unmatched"
|
|
],
|
|
"*.md": [
|
|
"bunx markdownlint-cli --fix --ignore bundles --ignore dist"
|
|
],
|
|
"*.sh": [
|
|
"bash scripts/lint-shellcheck.sh"
|
|
]
|
|
},
|
|
"name": "ship-shit-dev-library",
|
|
"private": true,
|
|
"scripts": {
|
|
"cleanup:global": "bash scripts/cleanup-global-duplicates.sh --execute",
|
|
"count": "bash -c 'echo \"Skills: $(ls -1 skills 2>/dev/null | wc -l | tr -d \" \")\"; echo \"Commands: $(ls -1 commands 2>/dev/null | wc -l | tr -d \" \")\"'",
|
|
"deps:update": "bunx npm-check-updates -u && bun install",
|
|
"inventory": "bash scripts/cleanup-global-duplicates.sh --dry-run",
|
|
"generate:all": "bun scripts/generate-plugin.js all cursor",
|
|
"generate:bundle": "bun scripts/generate-bundle.js",
|
|
"generate:manifest": "bun scripts/generate-manifest.js",
|
|
"generate:plugin": "bun scripts/generate-plugin.js",
|
|
"lint": "markdownlint '**/*.md' --ignore node_modules --ignore bundles --ignore dist",
|
|
"lint:docs": "markdownlint '*.md' '**/*.md' --ignore node_modules --ignore '.claude/**'",
|
|
"lint:fix": "markdownlint '**/*.md' --ignore node_modules --ignore bundles --ignore dist --fix",
|
|
"lint:sh": "bash -c 'if command -v shellcheck >/dev/null 2>&1; then find scripts -name \"*.sh\" -exec shellcheck {} +; else echo \"⚠ shellcheck not installed, skipping shell script linting\"; fi'",
|
|
"marketplace:generate": "bun scripts/generate-marketplace-bundles.js && bun scripts/generate-marketplace-json.js",
|
|
"prepare": "husky",
|
|
"sync:marketplace": "bun scripts/sync-marketplace.js",
|
|
"validate": "bash scripts/validate-skill-sync.sh",
|
|
"validate:skill": "bash scripts/validate-skill-sync.sh"
|
|
},
|
|
"version": "1.0.0"
|
|
}
|