{
  "name": "@hi18n/cli",
  "version": "0.2.2",
  "description": "Message internationalization meets immutability and type-safety - command line tool",
  "keywords": [
    "intl",
    "i18n",
    "internationalization",
    "locale",
    "localization",
    "globalization",
    "format",
    "formatting",
    "translate",
    "translation",
    "hi18n"
  ],
  "homepage": "https://github.com/wantedly/hi18n#readme",
  "bugs": {
    "url": "https://github.com/wantedly/hi18n/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wantedly/hi18n.git",
    "directory": "packages/cli"
  },
  "author": "Masaki Hara <ackie.h.gmai@gmail.com>",
  "license": "MIT",
  "files": [
    "dist/**/*",
    "cjs/**/*",
    "src/**/*",
    "!src/**/*.test.ts",
    "!src/__fixtures__/**/*"
  ],
  "bin": {
    "hi18n": "./bin/hi18n.cjs"
  },
  "type": "module",
  "main": "./cjs/dist/index.js",
  "exports": {
    "require": "./cjs/dist/index.js",
    "default": "./dist/index.js"
  },
  "scripts": {
    "build": "$npm_execpath run build:esm && $npm_execpath run build:cjs",
    "build:cjs": "tsc -p tsconfig.build-cjs.json",
    "build:esm": "tsc -p tsconfig.build.json",
    "clean": "rimraf dist cjs/dist",
    "prepack": "$npm_execpath run clean && $npm_execpath run build",
    "test": "vitest",
    "tsc": "tsc"
  },
  "dependencies": {
    "@hi18n/eslint-plugin": "^0.2.3",
    "@hi18n/tools-core": "^0.1.6",
    "@typescript-eslint/parser": "^8.42.0",
    "@typescript-eslint/utils": "^8.42.0",
    "commander": "^13.1.0",
    "cosmiconfig": "^7.0.1",
    "eslint": "^9.34.0",
    "glob": "^10.4.5",
    "resolve": "^1.22.0"
  },
  "devDependencies": {
    "@hi18n/core": "*",
    "@hi18n/dev-utils": "*",
    "@types/eslint": "^9.6.1",
    "@types/espree": "^10.1.0",
    "@types/node": "^22.18.1",
    "@types/resolve": "^1.20.6",
    "rimraf": "^3.0.2",
    "typescript": "^5.9.2",
    "vitest": "^3.2.4"
  }
}