{
  "name": "i18n-log",
  "version": "1.0.0",
  "description": "A powerful linter for internationalization (i18n) in JavaScript/TypeScript projects. Works like ESLint but specifically for translation issues - detecting untranslated text, missing keys, unused translations, and more.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "i18n-log": "dist/cli.js",
    "i18log": "dist/cli.js"
  },
  "files": [
    "dist",
    "README.md",
    "CLAUDE.md"
  ],
  "scripts": {
    "build": "npm run clean && tsc -p tsconfig.json",
    "clean": "rm -rf dist",
    "lint": "tsc --noEmit",
    "start": "ts-node src/cli.ts",
    "prepublishOnly": "npm run lint && npm run build",
    "version": "npm run lint && git add -A src",
    "postversion": "git push && git push --tags",
    "release": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "test:example": "cd example && npm install && npm run i18n:lint"
  },
  "keywords": [
    "i18n",
    "i18next",
    "internationalization",
    "translations",
    "linter",
    "eslint",
    "cli",
    "react",
    "vue",
    "angular",
    "svelte",
    "next.js",
    "nuxt",
    "typescript",
    "javascript",
    "missing-translations",
    "unused-translations",
    "hardcoded-text",
    "translation-keys"
  ],
  "author": "Marcel",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/marcelhanna/i18n-log.git"
  },
  "bugs": {
    "url": "https://github.com/marcelhanna/i18n-log/issues"
  },
  "homepage": "https://github.com/marcelhanna/i18n-log#readme",
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@babel/parser": "^7.28.4",
    "@babel/traverse": "^7.28.4",
    "chalk": "^4.1.2",
    "fast-glob": "^3.3.3",
    "prompts": "^2.4.2",
    "typescript": "^5.9.2"
  },
  "devDependencies": {
    "@types/babel__traverse": "^7.28.0",
    "@types/node": "^24.5.2",
    "@types/prompts": "^2.4.9",
    "ts-node": "^10.9.2"
  }
}
