{
  "name": "vite-plugin-i18n-ally",
  "version": "6.1.0",
  "description": "Vite plugin for automatic lazy loading of i18n resources",
  "type": "module",
  "keywords": [
    "i18n",
    "lazyload",
    "vite-plugin-i18n",
    "vite-plugin-i18n-ally"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hemengke1997/vite-plugin-i18n-ally.git"
  },
  "author": "hemengke <https://github.com/hemengke1997>",
  "files": [
    "*.d.ts",
    "dist/"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "require": "./dist/client/index.cjs",
      "import": "./dist/client/index.js"
    },
    "./server": {
      "types": "./dist/server/index.d.ts",
      "require": "./dist/server/index.cjs",
      "import": "./dist/server/index.js"
    },
    "./virtual": {
      "types": "./virtual.d.ts"
    }
  },
  "peerDependencies": {
    "vite": ">=5.0.0"
  },
  "dependencies": {
    "cookie": "^1.0.2",
    "debug": "^4.4.0",
    "deep-object-diff": "^1.1.9",
    "fast-glob": "^3.3.3",
    "find-up": "^7.0.0",
    "importx": "^0.5.2",
    "js-yaml": "^4.1.0",
    "json5": "^2.2.3",
    "language-tags": "^2.0.1",
    "negotiator": "^1.0.0",
    "picocolors": "^1.1.1"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.1",
    "@minko-fe/commitlint-config": "^2.1.3",
    "@minko-fe/eslint-config": "^4.2.3",
    "@minko-fe/tsconfig": "^2.1.2",
    "@swc/core": "^1.10.18",
    "@types/debug": "^4.1.12",
    "@types/js-yaml": "^4.0.9",
    "@types/language-tags": "^1.0.4",
    "@types/negotiator": "^0.6.3",
    "@types/node": "^22.13.5",
    "@types/react": "^18.3.21",
    "bumpp": "^10.1.0",
    "conventional-changelog-cli": "^5.0.0",
    "cross-env": "^7.0.3",
    "es-toolkit": "^1.37.2",
    "eslint": "^9.26.0",
    "i18next": "23.5.1",
    "jsdom": "^22.1.0",
    "npm-run-all": "^4.1.5",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "react-i18next": "13.2.2",
    "simple-git-hooks": "^2.13.0",
    "taze": "^19.1.0",
    "tsup": "^8.4.0",
    "tsup-plugin-bundleless": "^1.3.0",
    "typescript": "^5.8.3",
    "vite-tsconfig-paths": "^5.1.4",
    "vitepress": "^1.6.3",
    "vitest": "^3.1.3",
    "vite-plugin-i18n-ally": "6.1.0"
  },
  "simple-git-hooks": {
    "commit-msg": "npm run commitlint",
    "pre-commit": "npm run lint"
  },
  "commitlint": {
    "extends": [
      "@minko-fe/commitlint-config"
    ]
  },
  "prettier": "@minko-fe/prettier-config",
  "scripts": {
    "dev": "tsup --watch",
    "build": "rm -rf dist && tsup",
    "test": "vitest",
    "lint": "eslint . --fix --cache",
    "commitlint": "commitlint -e",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "bump": "bumpp package.json -c --no-push -t --all -x \"npm run changelog\"",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs"
  }
}