package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@vue/compat",
  3. "version": "3.4.7",
  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/core.git"
  30. },
  31. "keywords": [
  32. "vue"
  33. ],
  34. "author": "Evan You",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/vuejs/core/issues"
  38. },
  39. "homepage": "https://github.com/vuejs/core/tree/main/packages/vue-compat#readme",
  40. "dependencies": {
  41. "@babel/parser": "^7.23.6",
  42. "estree-walker": "^2.0.2",
  43. "source-map-js": "^1.0.2"
  44. },
  45. "peerDependencies": {
  46. "vue": "workspace:*"
  47. }
  48. }