package.json 995 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@babel/helper-module-transforms",
  3. "version": "7.24.7",
  4. "description": "Babel helper functions for implementing ES6 module transformations",
  5. "author": "The Babel Team (https://babel.dev/team)",
  6. "homepage": "https://babel.dev/docs/en/next/babel-helper-module-transforms",
  7. "license": "MIT",
  8. "publishConfig": {
  9. "access": "public"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/babel/babel.git",
  14. "directory": "packages/babel-helper-module-transforms"
  15. },
  16. "main": "./lib/index.js",
  17. "dependencies": {
  18. "@babel/helper-environment-visitor": "^7.24.7",
  19. "@babel/helper-module-imports": "^7.24.7",
  20. "@babel/helper-simple-access": "^7.24.7",
  21. "@babel/helper-split-export-declaration": "^7.24.7",
  22. "@babel/helper-validator-identifier": "^7.24.7"
  23. },
  24. "devDependencies": {
  25. "@babel/core": "^7.24.7"
  26. },
  27. "peerDependencies": {
  28. "@babel/core": "^7.0.0"
  29. },
  30. "engines": {
  31. "node": ">=6.9.0"
  32. },
  33. "type": "commonjs"
  34. }