package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@vue/babel-plugin-jsx",
  3. "version": "1.4.0",
  4. "description": "Babel plugin for Vue 3 JSX",
  5. "author": "Amour1688 <lcz_1996@foxmail.com>",
  6. "homepage": "https://github.com/vuejs/babel-plugin-jsx/tree/dev/packages/babel-plugin-jsx#readme",
  7. "license": "MIT",
  8. "type": "commonjs",
  9. "main": "dist/index.js",
  10. "module": "dist/index.mjs",
  11. "types": "dist/index.d.ts",
  12. "exports": {
  13. ".": {
  14. "import": "./dist/index.mjs",
  15. "require": "./dist/index.js"
  16. },
  17. "./*": "./*"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/vuejs/babel-plugin-jsx.git"
  22. },
  23. "bugs": {
  24. "url": "https://github.com/vuejs/babel-plugin-jsx/issues"
  25. },
  26. "files": [
  27. "dist"
  28. ],
  29. "dependencies": {
  30. "@babel/helper-module-imports": "^7.25.9",
  31. "@babel/helper-plugin-utils": "^7.26.5",
  32. "@babel/plugin-syntax-jsx": "^7.25.9",
  33. "@babel/template": "^7.26.9",
  34. "@babel/traverse": "^7.26.9",
  35. "@babel/types": "^7.26.9",
  36. "@vue/shared": "^3.5.13",
  37. "@vue/babel-helper-vue-transform-on": "1.4.0",
  38. "@vue/babel-plugin-resolve-type": "1.4.0"
  39. },
  40. "devDependencies": {
  41. "@babel/core": "^7.26.9",
  42. "@babel/preset-env": "^7.26.9",
  43. "@types/babel__template": "^7.4.4",
  44. "@types/babel__traverse": "^7.20.6",
  45. "@vue/test-utils": "^2.4.6",
  46. "regenerator-runtime": "^0.14.1",
  47. "vue": "^3.5.13"
  48. },
  49. "peerDependencies": {
  50. "@babel/core": "^7.0.0-0"
  51. },
  52. "peerDependenciesMeta": {
  53. "@babel/core": {
  54. "optional": true
  55. }
  56. },
  57. "scripts": {
  58. "build": "tsup",
  59. "watch": "tsup --watch"
  60. }
  61. }