{
  "name": "vue3-gettext",
  "version": "3.0.0-beta.6",
  "description": "Translate Vue 3 applications with gettext",
  "homepage": "https://jshmrtn.github.io/vue3-gettext/",
  "author": "Leo Zurbriggen",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jshmrtn/vue3-gettext"
  },
  "keywords": [
    "gettext",
    "vue",
    "vue3",
    "internationalization",
    "i18n",
    "translation",
    "l10n",
    "typescript"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "bin": {
    "vue-gettext-compile": "./dist/gettext_compile.js",
    "vue-gettext-extract": "./dist/gettext_extract.js"
  },
  "scripts": {
    "docs": "vuepress dev docs",
    "docs:build": "vuepress build docs -d distDocs",
    "docs:extract": "node --loader ts-node/esm ./scripts/gettext_extract.ts",
    "docs:compile": "node --loader ts-node/esm ./scripts/gettext_compile.ts",
    "start": "vite serve dev",
    "build": "tsup",
    "test": "npm run test:types && npm run test:lint && npm run test:unit",
    "test:types": "tsc --noEmit",
    "test:lint": "npm run test:lint:js && npm run test:lint:prettier",
    "test:lint:js": "./node_modules/.bin/eslint --ext .js,.ts,.vue",
    "test:lint:prettier": "./node_modules/.bin/prettier --check '**/**.(json|js|ts|vue)'",
    "test:unit": "vitest run",
    "test:unit:watch": "vitest",
    "prepublishOnly": "npm run test && npm run build",
    "package:publish:next": "npm publish --tag next",
    "package:publish": "npm publish"
  },
  "engines": {
    "node": ">= 18.0.0"
  },
  "peerDependencies": {
    "@vue/compiler-sfc": ">=3.0.0",
    "vue": ">=3.0.0"
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "command-line-args": "^5.2.1",
    "cosmiconfig": "^9.0.0",
    "gettext-extractor": "^3.8.0",
    "glob": "^10.4.1",
    "parse5": "^6.0.1",
    "parse5-htmlparser2-tree-adapter": "^6.0.1",
    "pofile": "^1.1.4"
  },
  "devDependencies": {
    "@swc/core": "^1.5.28",
    "@types/command-line-args": "^5.2.3",
    "@types/glob": "^8.1.0",
    "@types/node": "^20.14.0",
    "@types/parse5": "^6.0.3",
    "@types/parse5-htmlparser2-tree-adapter": "^6.0.1",
    "@typescript-eslint/parser": "^5.33.1",
    "@vitejs/plugin-vue": "^5.0.5",
    "@vue/test-utils": "^2.4.6",
    "@vuepress/bundler-vite": "^2.0.0-rc.12",
    "@vuepress/theme-default": "^2.0.0-rc.33",
    "date-fns": "^2.29.1",
    "eslint": "^8.22.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-vue": "^8.5.0",
    "happy-dom": "^6.0.4",
    "json-loader": "^0.5.7",
    "markdown-it-fence": "^0.1.3",
    "prettier": "^3.3.0",
    "ts-node": "^10.9.2",
    "tsup": "^8.1.0",
    "typescript": "^5.4.5",
    "vite": "^5.2.12",
    "vitest": "^1.6.0",
    "vue": "^3.4.27",
    "vuepress": "^2.0.0-rc.12"
  },
  "exports": {
    "require": "./dist/index.js",
    "import": "./dist/index.mjs",
    "types": "./dist/index.d.ts"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ]
}
