package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@babel/generator",
  3. "version": "7.26.2",
  4. "description": "Turns an AST into code.",
  5. "author": "The Babel Team (https://babel.dev/team)",
  6. "license": "MIT",
  7. "publishConfig": {
  8. "access": "public"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/babel/babel.git",
  13. "directory": "packages/babel-generator"
  14. },
  15. "homepage": "https://babel.dev/docs/en/next/babel-generator",
  16. "bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20generator%22+is%3Aopen",
  17. "main": "./lib/index.js",
  18. "files": [
  19. "lib"
  20. ],
  21. "dependencies": {
  22. "@babel/parser": "^7.26.2",
  23. "@babel/types": "^7.26.0",
  24. "@jridgewell/gen-mapping": "^0.3.5",
  25. "@jridgewell/trace-mapping": "^0.3.25",
  26. "jsesc": "^3.0.2"
  27. },
  28. "devDependencies": {
  29. "@babel/core": "^7.26.0",
  30. "@babel/helper-fixtures": "^7.26.0",
  31. "@babel/plugin-transform-typescript": "^7.25.9",
  32. "@jridgewell/sourcemap-codec": "^1.4.15",
  33. "@types/jsesc": "^2.5.0",
  34. "charcodes": "^0.2.0"
  35. },
  36. "engines": {
  37. "node": ">=6.9.0"
  38. },
  39. "type": "commonjs"
  40. }