112 lines
2.8 KiB
JSON
112 lines
2.8 KiB
JSON
{
|
|
"name": "@intlify/unplugin-vue-i18n",
|
|
"version": "3.0.1",
|
|
"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": "^7.4.0",
|
|
"@intlify/shared": "^9.4.0",
|
|
"@rollup/pluginutils": "^5.1.0",
|
|
"@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-js": "^1.0.2",
|
|
"unplugin": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"unbuild": "^2.0.0"
|
|
},
|
|
"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": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"require": "./lib/index.cjs",
|
|
"import": "./lib/index.mjs"
|
|
},
|
|
"./vite": {
|
|
"types": "./vite.d.ts",
|
|
"require": "./lib/vite.cjs",
|
|
"import": "./lib/vite.mjs"
|
|
},
|
|
"./webpack": {
|
|
"types": "./webpack.d.ts",
|
|
"require": "./lib/webpack.cjs",
|
|
"import": "./lib/webpack.mjs"
|
|
},
|
|
"./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 serve --config ./examples/webpack/webpack.config.js",
|
|
"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"
|
|
}
|
|
}
|