版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

113 строки
2.9 KiB

  1. {
  2. "name": "@intlify/unplugin-vue-i18n",
  3. "version": "0.10.0",
  4. "description": "unplugin for Vue I18n",
  5. "author": {
  6. "name": "kazuya kawaguchi",
  7. "email": "kawakazu80@gmail.com"
  8. },
  9. "bugs": {
  10. "url": "https://github.com/intlify/bundle-tools/issues"
  11. },
  12. "peerDependencies": {
  13. "petite-vue-i18n": "*",
  14. "vue-i18n": "*",
  15. "vue-i18n-bridge": "*"
  16. },
  17. "peerDependenciesMeta": {
  18. "petite-vue-i18n": {
  19. "optional": true
  20. },
  21. "vue-i18n": {
  22. "optional": true
  23. },
  24. "vue-i18n-bridge": {
  25. "optional": true
  26. }
  27. },
  28. "dependencies": {
  29. "@intlify/bundle-utils": "^5.4.0",
  30. "@intlify/shared": "9.3.0-beta.17",
  31. "@rollup/pluginutils": "^5.0.2",
  32. "@vue/compiler-sfc": "^3.2.47",
  33. "debug": "^4.3.3",
  34. "fast-glob": "^3.2.12",
  35. "js-yaml": "^4.1.0",
  36. "json5": "^2.2.3",
  37. "pathe": "^1.0.0",
  38. "picocolors": "^1.0.0",
  39. "source-map": "0.6.1",
  40. "unplugin": "^1.1.0"
  41. },
  42. "devDependencies": {
  43. "mlly": "^1.0.0",
  44. "unbuild": "^1.0.2"
  45. },
  46. "engines": {
  47. "node": ">= 14.16"
  48. },
  49. "files": [
  50. "lib",
  51. "*.d.ts"
  52. ],
  53. "homepage": "https://github.com/intlify/bundle-tools/blob/main/packages/unplugin-vue-i18n/README.md",
  54. "keywords": [
  55. "i18n",
  56. "plugin",
  57. "unplugin",
  58. "transform",
  59. "webpack",
  60. "vite",
  61. "vue",
  62. "vue-i18n"
  63. ],
  64. "license": "MIT",
  65. "main": "lib/index.cjs",
  66. "module": "./lib/index.mjs",
  67. "types": "./index.d.ts",
  68. "exports": {
  69. ".": {
  70. "require": "./lib/index.cjs",
  71. "import": "./lib/index.mjs",
  72. "types": "./index.d.ts"
  73. },
  74. "./vite": {
  75. "require": "./lib/vite.cjs",
  76. "import": "./lib/vite.mjs",
  77. "types": "./vite.d.ts"
  78. },
  79. "./webpack": {
  80. "require": "./lib/webpack.cjs",
  81. "import": "./lib/webpack.mjs",
  82. "types": "./webpack.d.ts"
  83. },
  84. "./types": {
  85. "types": "./types.d.ts"
  86. },
  87. "./messages": {
  88. "types": "./messages.d.ts"
  89. },
  90. "./lib/*": "./lib/*",
  91. "./package.json": "./package.json"
  92. },
  93. "repository": {
  94. "type": "git",
  95. "url": "git+https://github.com/intlify/bundle-tools.git",
  96. "directory": "packages/unplugin-vue-i18n"
  97. },
  98. "scripts": {
  99. "dev:vite": "vite examples/vite --config ./examples/vite/vite.config.ts",
  100. "dev:webpack": "yarn build && webpack-dev-server --config ./examples/webpack/webpack.config.js --inline --hot",
  101. "build": "unbuild",
  102. "build:example": "npm-run-all \"build:example:*\"",
  103. "build:example:vite": "vite build --config ./examples/vite/vite.config.ts --outDir ./examples/vite/dist",
  104. "build:example:webpack": "yarn build && webpack --config ./examples/webpack/webpack.config.js",
  105. "clean": "npm-run-all \"clean:*\"",
  106. "clean:lib": "rm -rf ./lib",
  107. "test": "yarn test:e2e",
  108. "test:e2e": "jest --runInBand --config ./jest.e2e.config.js",
  109. "changelog": "jiti ../../scripts/changelog.ts",
  110. "release": "jiti ../../scripts/release.ts"
  111. }
  112. }