UNPKG

translatinator

Version:

Automated translation management for web applications. Supports multiple translation engines (Google, DeepL, Yandex, LibreTranslate)

70 lines (69 loc) 1.71 kB
{ "name": "translatinator", "version": "1.0.1", "description": "Automated translation management for web applications. Supports multiple translation engines (Google, DeepL, Yandex, LibreTranslate)", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "bin": { "translatinator": "dist/cli.js", "translatinator-dev": "dist/dev.js" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:integration": "jest --testPathPattern=integration", "test:unit": "jest --testPathPattern='^(?!.*integration).*\\.test\\.(ts|js)$'", "prepublishOnly": "npm run build" }, "keywords": [ "translation", "i18n", "internationalization", "google-translate", "deepl", "yandex", "libretranslate", "webpack", "automation" ], "author": "nordwestt", "license": "MIT", "dependencies": { "axios": "^1.6.0", "chokidar": "^3.5.3", "commander": "^11.1.0", "deepl-node": "^1.12.0", "fs-extra": "^11.1.1", "translate": "^3.0.1", "ts-node": "^10.9.2" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "jest": "^29.7.0", "ts-jest": "^29.4.0", "tsup": "^8.5.0", "typescript": "^5.2.0" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/nordwestt/translatinator.git" }, "homepage": "https://github.com/nordwestt/translatinator", "publishConfig": { "access": "public" } }