Spaces:
Sleeping
Sleeping
File size: 1,000 Bytes
b14a10f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | {
"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"
}
} |