package.json 937 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@svgr/core",
  3. "description": "Transform SVG into React Components.",
  4. "version": "5.5.0",
  5. "main": "lib/index.js",
  6. "repository": "https://github.com/gregberge/svgr/tree/master/packages/core",
  7. "author": "Greg Bergé <berge.greg@gmail.com>",
  8. "publishConfig": {
  9. "access": "public"
  10. },
  11. "keywords": [
  12. "svgr",
  13. "svg",
  14. "react",
  15. "core",
  16. "api"
  17. ],
  18. "engines": {
  19. "node": ">=10"
  20. },
  21. "homepage": "https://react-svgr.com",
  22. "funding": {
  23. "type": "github",
  24. "url": "https://github.com/sponsors/gregberge"
  25. },
  26. "license": "MIT",
  27. "scripts": {
  28. "prebuild": "rm -rf lib/",
  29. "build": "babel --config-file ../../babel.config.js -d lib --ignore \"**/*.test.js\" src",
  30. "prepublishOnly": "yarn run build"
  31. },
  32. "dependencies": {
  33. "@svgr/plugin-jsx": "^5.5.0",
  34. "camelcase": "^6.2.0",
  35. "cosmiconfig": "^7.0.0"
  36. },
  37. "gitHead": "b5920550bd966f876cb65c5e23af180461e5aa23"
  38. }