i18next-translation
Version:
Automatically translate your i18next dictionaries.
70 lines • 1.51 kB
JSON
{
"name": "i18next-translation",
"description": "Automatically translate your i18next dictionaries.",
"author": "Affan Shahid <affan.shahid.94@gmail.com> (https://affanshahid.dev)",
"license": "MIT",
"type": "module",
"version": "0.0.5",
"keywords": [
"i18next",
"auto",
"translate"
],
"files": [
"dist"
],
"bin": {
"i18next-translation": "dist/cli.js"
},
"engines": {
"node": ">=20"
},
"tsup": {
"entry": [
"src/bin/cli.ts"
],
"format": [
"esm"
],
"clean": true,
"splitting": true,
"minify": true
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/openai": "^1.3.22",
"@aws-sdk/client-translate": "^3.839.0",
"@stricli/core": "^1.1.2",
"ai": "^4.3.16",
"chalk": "^5.4.1",
"dotenv": "^17.0.0",
"flat": "^6.0.1",
"lodash.chunk": "^4.2.0",
"ora": "^8.2.0",
"smol-toml": "^1.4.0",
"uuid": "^11.1.0",
"yaml": "^2.8.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/lodash.chunk": "^4.2.9",
"@types/node": "24.x",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"oxlint": "^1.3.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tsup": "^6.7.0",
"tsx": "^4.20.3",
"typescript": "5.6.x"
},
"lint-staged": {
"*.{js,ts,md,json}": "prettier --write",
"**/*.{js,ts}": "oxlint"
},
"scripts": {
"dev": "tsx ./src/bin/cli.ts",
"prebuild": "tsc",
"build": "tsup"
}
}