|
- {
- "name": "@intlify/unplugin-vue-i18n",
- "version": "0.10.0",
- "description": "unplugin for Vue I18n",
- "author": {
- "name": "kazuya kawaguchi",
- "email": "kawakazu80@gmail.com"
- },
- "bugs": {
- "url": "https://github.com/intlify/bundle-tools/issues"
- },
- "peerDependencies": {
- "petite-vue-i18n": "*",
- "vue-i18n": "*",
- "vue-i18n-bridge": "*"
- },
- "peerDependenciesMeta": {
- "petite-vue-i18n": {
- "optional": true
- },
- "vue-i18n": {
- "optional": true
- },
- "vue-i18n-bridge": {
- "optional": true
- }
- },
- "dependencies": {
- "@intlify/bundle-utils": "^5.4.0",
- "@intlify/shared": "9.3.0-beta.17",
- "@rollup/pluginutils": "^5.0.2",
- "@vue/compiler-sfc": "^3.2.47",
- "debug": "^4.3.3",
- "fast-glob": "^3.2.12",
- "js-yaml": "^4.1.0",
- "json5": "^2.2.3",
- "pathe": "^1.0.0",
- "picocolors": "^1.0.0",
- "source-map": "0.6.1",
- "unplugin": "^1.1.0"
- },
- "devDependencies": {
- "mlly": "^1.0.0",
- "unbuild": "^1.0.2"
- },
- "engines": {
- "node": ">= 14.16"
- },
- "files": [
- "lib",
- "*.d.ts"
- ],
- "homepage": "https://github.com/intlify/bundle-tools/blob/main/packages/unplugin-vue-i18n/README.md",
- "keywords": [
- "i18n",
- "plugin",
- "unplugin",
- "transform",
- "webpack",
- "vite",
- "vue",
- "vue-i18n"
- ],
- "license": "MIT",
- "main": "lib/index.cjs",
- "module": "./lib/index.mjs",
- "types": "./index.d.ts",
- "exports": {
- ".": {
- "require": "./lib/index.cjs",
- "import": "./lib/index.mjs",
- "types": "./index.d.ts"
- },
- "./vite": {
- "require": "./lib/vite.cjs",
- "import": "./lib/vite.mjs",
- "types": "./vite.d.ts"
- },
- "./webpack": {
- "require": "./lib/webpack.cjs",
- "import": "./lib/webpack.mjs",
- "types": "./webpack.d.ts"
- },
- "./types": {
- "types": "./types.d.ts"
- },
- "./messages": {
- "types": "./messages.d.ts"
- },
- "./lib/*": "./lib/*",
- "./package.json": "./package.json"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/intlify/bundle-tools.git",
- "directory": "packages/unplugin-vue-i18n"
- },
- "scripts": {
- "dev:vite": "vite examples/vite --config ./examples/vite/vite.config.ts",
- "dev:webpack": "yarn build && webpack-dev-server --config ./examples/webpack/webpack.config.js --inline --hot",
- "build": "unbuild",
- "build:example": "npm-run-all \"build:example:*\"",
- "build:example:vite": "vite build --config ./examples/vite/vite.config.ts --outDir ./examples/vite/dist",
- "build:example:webpack": "yarn build && webpack --config ./examples/webpack/webpack.config.js",
- "clean": "npm-run-all \"clean:*\"",
- "clean:lib": "rm -rf ./lib",
- "test": "yarn test:e2e",
- "test:e2e": "jest --runInBand --config ./jest.e2e.config.js",
- "changelog": "jiti ../../scripts/changelog.ts",
- "release": "jiti ../../scripts/release.ts"
- }
- }
|