package.json 944 B

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