- Detailed stack breakdown: runtime, framework, test, bundler, database - Generic integration detection (25+ packages: Clerk, Stripe, OpenAI, Sentry...) - jq fallback: grep-based JSON parsing when jq not installed - Stack recap at top of human output + full stack object in JSON - README prompt updated: Stack Recap first, CLAUDE.md template ~100 lines Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
575 B
JSON
30 lines
575 B
JSON
{
|
|
"name": "claude-code-quiz",
|
|
"version": "1.0.0",
|
|
"description": "CLI quiz to test your Claude Code knowledge",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"claude-quiz": "./src/index.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"quiz": "node src/index.js"
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"claude-code",
|
|
"quiz",
|
|
"cli",
|
|
"learning"
|
|
],
|
|
"author": "Florian BRUNIAUX",
|
|
"license": "CC-BY-SA-4.0",
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"inquirer": "^9.2.12",
|
|
"yaml": "^2.3.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|