{
  "name": "@nuxtjs/i18n",
  "description": "i18n for Nuxt",
  "version": "8.0.0-rc.5",
  "homepage": "https://i18n.nuxtjs.org",
  "bugs": {
    "url": "https://github.com/nuxt-community/i18n-module/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nuxt-community/i18n-module.git"
  },
  "license": "MIT",
  "contributors": [
    {
      "name": "Paul Gascou-Vaillancourt (@paulgv)"
    },
    {
      "name": "Rafal Chlodnicki (@rchl)"
    },
    {
      "name": "Kazuya Kawaguchi (@kazupon)"
    }
  ],
  "exports": {
    ".": {
      "import": "./dist/module.mjs",
      "require": "./dist/module.cjs",
      "types": "./dist/types.d.ts"
    },
    "./package.json": "./package.json"
  },
  "imports": {
    "#i18n": "./dist/runtime/composables.mjs"
  },
  "main": "./dist/module.cjs",
  "module": "./dist/module.mjs",
  "types": "./dist/types.d.ts",
  "type": "module",
  "files": [
    "dist"
  ],
  "scripts": {
    "prepare": "git config --local core.hooksPath .githooks",
    "build": "nuxi build-module .",
    "stub": "nuxi build-module --stub .",
    "prepack": "pnpm build",
    "release": "bumpp --commit \"release: v%s\" --push --tag",
    "changelog": "gh-changelogen --repo=nuxt-community/i18n-module",
    "dev": "pnpm dev:prepare && pnpm build && nuxi dev playground",
    "dev:prepare": "nuxi prepare",
    "dev:build": "nuxi build playground",
    "dev:generate": "nuxi generate playground",
    "dev:preview": "nuxi preview playground",
    "dev:clean": "rm -rf playground/.nuxt playground/dist playground/.output",
    "docs:dev": "nuxi dev docs",
    "docs:build": "nuxi build docs",
    "docs:generate": "nuxi generate docs",
    "docs:preview": "nuxi preview docs",
    "fix": "run-p lint:fix format:fix",
    "format": "prettier --config .prettierrc.mjs --ignore-path .prettierignore --list-different '**/*.{js,json,html,md}'",
    "format:fix": "pnpm format --write",
    "lint": "eslint --cache --ext .js,.ts,.vue,.json .",
    "lint:fix": "pnpm lint --fix",
    "test": "pnpm dev:prepare && run-s test:types test:unit test:spec",
    "test:types": "tsc --noEmit --project tsconfig.test.json",
    "test:unit": "vitest run test",
    "test:spec": "vitest run specs"
  },
  "packageManager": "pnpm@8.8.0",
  "pnpm": {
    "overrides": {
      "@nuxtjs/i18n": "link:.",
      "nuxt": "^3.7.0",
      "consola": "^3"
    }
  },
  "dependencies": {
    "@intlify/shared": "9.5.0",
    "@intlify/unplugin-vue-i18n": "^1.4.0",
    "@mizchi/sucrase": "^4.1.0",
    "@nuxt/kit": "^3.7.4",
    "@vue/compiler-sfc": "^3.3.4",
    "cookie-es": "^1.0.0",
    "debug": "^4.3.4",
    "defu": "^6.1.2",
    "estree-walker": "^3.0.3",
    "is-https": "^4.0.0",
    "js-cookie": "^3.0.5",
    "knitwork": "^1.0.0",
    "magic-string": "^0.30.4",
    "mlly": "^1.4.2",
    "pathe": "^1.1.1",
    "pkg-types": "^1.0.3",
    "ufo": "^1.3.1",
    "unplugin": "^1.5.0",
    "unstorage": "^1.9.0",
    "vue-i18n": "9.5.0",
    "vue-i18n-routing": "^1.1.1"
  },
  "devDependencies": {
    "@babel/parser": "^7.23.0",
    "@babel/plugin-syntax-import-assertions": "^7.22.5",
    "@babel/types": "^7.23.0",
    "@nuxt/module-builder": "latest",
    "@nuxt/schema": "^3.7.4",
    "@types/debug": "^4.1.9",
    "@types/js-cookie": "^3.0.4",
    "@typescript-eslint/eslint-plugin": "^6.7.4",
    "@typescript-eslint/parser": "^6.7.4",
    "bumpp": "^9.2.0",
    "changelogithub": "^0.13.0",
    "eslint": "^8.50.0",
    "eslint-config-prettier": "^9.0.0",
    "execa": "^8.0.1",
    "get-port-please": "^3.1.1",
    "gh-changelogen": "^0.2.8",
    "jiti": "^1.20.0",
    "jsdom": "^21.1.2",
    "lint-staged": "^14.0.1",
    "npm-run-all": "^4.1.5",
    "nuxt": "^3.7.4",
    "ofetch": "^1.3.3",
    "playwright": "^1.38.1",
    "prettier": "^3.0.3",
    "ts-essentials": "^9.4.0",
    "typescript": "^5.2.2",
    "vitest": "^0.34.6",
    "vue": "^3.3.4"
  },
  "lint-staged": {
    "*.{json,md,yml}": [
      "prettier --write"
    ],
    "*.{js,vue}": [
      "prettier --write",
      "eslint --fix --ext .js,.vue"
    ],
    "*.ts?(x)": [
      "prettier --parser=typescript --write",
      "eslint --fix --ext .ts"
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": "^14.16.0 || >=16.11.0"
  }
}
