package.json 932 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@vue/compat",
  3. "version": "3.2.4",
  4. "description": "Vue 3 compatibility build for Vue 2",
  5. "main": "index.js",
  6. "module": "dist/vue.runtime.esm-bundler.js",
  7. "unpkg": "dist/vue.global.js",
  8. "jsdelivr": "dist/vue.global.js",
  9. "files": [
  10. "index.js",
  11. "dist"
  12. ],
  13. "buildOptions": {
  14. "name": "Vue",
  15. "filename": "vue",
  16. "compat": true,
  17. "formats": [
  18. "esm-bundler",
  19. "esm-bundler-runtime",
  20. "cjs",
  21. "global",
  22. "global-runtime",
  23. "esm-browser",
  24. "esm-browser-runtime"
  25. ]
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "git+https://github.com/vuejs/vue-next.git"
  30. },
  31. "keywords": [
  32. "vue"
  33. ],
  34. "author": "Evan You",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/vuejs/vue-next/issues"
  38. },
  39. "homepage": "https://github.com/vuejs/vue-next/tree/master/packages/vue-compat#readme",
  40. "peerDependencies": {
  41. "vue": "3.2.4"
  42. }
  43. }