package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@vue/babel-plugin-jsx",
  3. "version": "1.1.5",
  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. "main": "dist/index.js",
  9. "module": "dist/index.mjs",
  10. "types": "dist/index.d.ts",
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/vuejs/babel-plugin-jsx"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/vuejs/babel-plugin-jsx/issues"
  17. },
  18. "files": [
  19. "dist"
  20. ],
  21. "dependencies": {
  22. "@babel/helper-module-imports": "^7.22.5",
  23. "@babel/plugin-syntax-jsx": "^7.22.5",
  24. "@babel/template": "^7.22.5",
  25. "@babel/traverse": "^7.22.5",
  26. "@babel/types": "^7.22.5",
  27. "camelcase": "^6.3.0",
  28. "html-tags": "^3.3.1",
  29. "svg-tags": "^1.0.0",
  30. "@vue/babel-helper-vue-transform-on": "^1.1.5"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.22.5",
  34. "@babel/preset-env": "^7.22.5",
  35. "@types/babel__template": "^7.4.1",
  36. "@types/babel__traverse": "^7.20.1",
  37. "@types/svg-tags": "^1.0.0",
  38. "@vue/runtime-dom": "^3.3.4",
  39. "@vue/test-utils": "^2.4.0",
  40. "regenerator-runtime": "^0.13.11",
  41. "vue": "^3.3.4"
  42. },
  43. "peerDependencies": {
  44. "@babel/core": "^7.0.0-0"
  45. },
  46. "scripts": {
  47. "build": "tsup",
  48. "watch": "tsup --watch"
  49. }
  50. }