Files
todo-app/package.json
agent dev-01 b2d1776185
All checks were successful
Auditor / audit (pull_request) Successful in 34s
Add GET /version endpoint returning package name and version
Reads name and version from package.json via require() and exposes them
at GET /version as { name, version }.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-12 07:07:37 +00:00

13 lines
213 B
JSON

{
"name": "todo-app",
"version": "0.1.0",
"description": "Minimal Express TODO API",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"express": "^4.18.2"
}
}