package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@svgr/babel-plugin-remove-jsx-attribute",
  3. "description": "Remove JSX attribute",
  4. "version": "8.0.0",
  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/babel-plugin-remove-jsx-attribute",
  15. "author": "Greg Bergé <berge.greg@gmail.com>",
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "keywords": [
  20. "babel-plugin"
  21. ],
  22. "engines": {
  23. "node": ">=14"
  24. },
  25. "homepage": "https://react-svgr.com",
  26. "funding": {
  27. "type": "github",
  28. "url": "https://github.com/sponsors/gregberge"
  29. },
  30. "license": "MIT",
  31. "peerDependencies": {
  32. "@babel/core": "^7.0.0-0"
  33. },
  34. "scripts": {
  35. "reset": "rm -rf dist",
  36. "build": "rollup -c ../../build/rollup.config.mjs",
  37. "prepublishOnly": "pnpm run reset && pnpm run build"
  38. },
  39. "gitHead": "52a1079681477587ef0d842c0e78531adf2d2520"
  40. }