package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@svgr/plugin-jsx",
  3. "description": "Transform SVG into 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/plugin-jsx",
  15. "author": "Greg Bergé <berge.greg@gmail.com>",
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "keywords": [
  20. "svgr-plugin"
  21. ],
  22. "engines": {
  23. "node": ">=10"
  24. },
  25. "homepage": "https://react-svgr.com",
  26. "funding": {
  27. "type": "github",
  28. "url": "https://github.com/sponsors/gregberge"
  29. },
  30. "license": "MIT",
  31. "scripts": {
  32. "reset": "rm -rf dist",
  33. "build": "rollup -c ../../build/rollup.config.js",
  34. "prepublishOnly": "npm run reset && npm run build"
  35. },
  36. "peerDependencies": {
  37. "@svgr/core": "^6.0.0"
  38. },
  39. "dependencies": {
  40. "@babel/core": "^7.19.6",
  41. "@svgr/babel-preset": "^6.5.1",
  42. "@svgr/hast-util-to-babel-ast": "^6.5.1",
  43. "svg-parser": "^2.0.4"
  44. },
  45. "gitHead": "d5efedd372999692f84d30072e502b5a6b8fe734"
  46. }