217cd15788e45db5372e3dbd31c72c0bef897d77d6292ddae47c09755da00c6c0e020c1f07d499f8c6fdac1270736f16fff90a1c4c3fd48abe8d738fb185b6 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@vue/babel-plugin-resolve-type",
  3. "version": "1.4.0",
  4. "description": "Babel plugin for resolving Vue types.",
  5. "author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
  6. "funding": "https://github.com/sponsors/sxzz",
  7. "homepage": "https://github.com/vuejs/babel-plugin-jsx/tree/dev/packages/babel-plugin-resolve-type#readme",
  8. "license": "MIT",
  9. "type": "commonjs",
  10. "main": "dist/index.js",
  11. "module": "dist/index.mjs",
  12. "types": "dist/index.d.ts",
  13. "exports": {
  14. ".": {
  15. "import": "./dist/index.mjs",
  16. "require": "./dist/index.js"
  17. },
  18. "./package.json": "./package.json"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/vuejs/babel-plugin-jsx.git"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/vuejs/babel-plugin-jsx/issues"
  26. },
  27. "files": [
  28. "dist"
  29. ],
  30. "peerDependencies": {
  31. "@babel/core": "^7.0.0-0"
  32. },
  33. "dependencies": {
  34. "@babel/code-frame": "^7.26.2",
  35. "@babel/helper-module-imports": "^7.25.9",
  36. "@babel/helper-plugin-utils": "^7.26.5",
  37. "@babel/parser": "^7.26.9",
  38. "@vue/compiler-sfc": "^3.5.13"
  39. },
  40. "devDependencies": {
  41. "@babel/core": "^7.26.9",
  42. "@types/babel__code-frame": "^7.0.6",
  43. "vue": "^3.5.13"
  44. },
  45. "scripts": {
  46. "build": "tsup",
  47. "watch": "tsup --watch"
  48. }
  49. }