word-counter-api/package.json
ai-implementer f4acc259b3 [WCTAS-2] Initialize npm/TypeScript project
Add package.json with build/start/dev/test scripts, tsconfig.json with
strict mode and CommonJS target, .gitignore, and CLAUDE.md documenting
the new project structure and commands.

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

21 lines
437 B
JSON

{
"name": "word-counter-api",
"version": "1.0.0",
"description": "HTTP API that counts words in text input",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}