{ "name": "translator-api", "version": "1.0.0", "description": "Alternative gratuite à Google Translate via API", "main": "central/src/index.js", "scripts": { "start:central": "node central/src/index.js", "start:worker": "node worker/src/index.js", "dev:central": "nodemon central/src/index.js", "dev:worker": "nodemon worker/src/index.js", "install:all": "npm install && cd central && npm install && cd ../worker && npm install", "build": "echo 'No build step required'" }, "keywords": ["translation", "api", "google-translate", "huggingface"], "author": "NathMen12", "license": "MIT", "dependencies": { "express": "^4.18.2", "cors": "^2.8.5", "express-rate-limit": "^7.1.5", "ws": "^8.14.2", "uuid": "^9.0.1", "p-queue": "^7.4.1", "dotenv": "^16.3.1", "winston": "^3.11.0", "@vitalets/google-translate-api": "^8.0.0" }, "devDependencies": { "nodemon": "^3.0.2" }, "engines": { "node": ">=18.0.0" } }