{ "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", "dependencies": { "express": "^4.18.0" }, "devDependencies": { "@types/express": "^4.17.0", "@types/node": "^22.0.0", "tsx": "^4.0.0", "typescript": "^5.0.0" } }