unused-i18n
Version:
Simplifies managing and cleaning up unused translation keys in localization files
63 lines • 1.37 kB
JSON
{
"name": "unused-i18n",
"version": "0.1.29",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Lawndlwd/unused-i18n.git"
},
"main": "dist/cli.cjs",
"types": "dist/index.d.ts",
"bin": {
"unused-i18n": "dist/cli.cjs"
},
"files": [
"dist"
],
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.3",
"@types/node": "^14.18.63",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-istanbul": "^1.6.0",
"typescript": "^5.2.2",
"vitest": "^1.6.0",
"vite": "^5.2.0"
},
"keywords": [
"i18n",
"unused-i18n",
"i18n-unused",
"locales",
"next-international",
"internationalization",
"translate",
"next"
],
"engines": {
"node": ">=18.x",
"pnpm": ">=8.x"
},
"scripts": {
"build": "vite build --config vite.config.ts && pnpm run type:generate",
"type:generate": "tsc --declaration -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"start": "vite",
"test": "vitest",
"release": "pnpm build && pnpm changeset publish",
"changeset": "npx changeset",
"coverage": "vitest run --coverage"
}
}