claude-code-ultimate-guide/quiz/package.json
Florian BRUNIAUX 174192f583 feat(seo): add CITATION.cff and improve AI discoverability
- Add CITATION.cff for academic citations and GitHub citation button
- Add "For AI Assistants" section in README with llms.txt reference
- Update machine-readable/llms.txt stats (4700+ → 9600+ lines)
- Bump version display to 3.8.0 in README footer

Improves discoverability in GitHub search, Google Scholar, and AI assistants

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-17 11:21:58 +01:00

34 lines
647 B
JSON

{
"name": "claude-code-quiz",
"version": "1.0.0",
"description": "CLI quiz to test your Claude Code knowledge",
"type": "module",
"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.8.2"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"js-yaml": "^4.1.1"
}
}