package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@svgr/hast-util-to-babel-ast",
  3. "description": "Transform HAST to Babel AST (JSX)",
  4. "version": "6.5.1",
  5. "main": "./dist/index.js",
  6. "types": "./dist/index.d.ts",
  7. "exports": {
  8. ".": {
  9. "types": "./dist/index.d.ts",
  10. "default": "./dist/index.js"
  11. },
  12. "./package.json": "./package.json"
  13. },
  14. "repository": "https://github.com/gregberge/svgr/tree/main/packages/hast-util-to-babel-ast",
  15. "author": "Greg Bergé <berge.greg@gmail.com>",
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "keywords": [
  20. "html",
  21. "hast",
  22. "babel",
  23. "hast-util",
  24. "unist-util",
  25. "unist"
  26. ],
  27. "engines": {
  28. "node": ">=10"
  29. },
  30. "homepage": "https://react-svgr.com",
  31. "funding": {
  32. "type": "github",
  33. "url": "https://github.com/sponsors/gregberge"
  34. },
  35. "license": "MIT",
  36. "dependencies": {
  37. "@babel/types": "^7.20.0",
  38. "entities": "^4.4.0"
  39. },
  40. "scripts": {
  41. "reset": "rm -rf dist",
  42. "build": "rollup -c ../../build/rollup.config.js",
  43. "prepublishOnly": "npm run reset && npm run build"
  44. },
  45. "devDependencies": {
  46. "@types/svg-parser": "^2.0.3"
  47. },
  48. "gitHead": "d5efedd372999692f84d30072e502b5a6b8fe734"
  49. }