{
  "name": "react-inlinesvg",
  "version": "3.0.3",
  "description": "An SVG loader for React",
  "author": "Gil Barbara <gilbarbara@gmail.com>",
  "contributors": [
    {
      "name": "Matthew Dapena-Tretter",
      "email": "m@tthewwithanm.com"
    }
  ],
  "keywords": [
    "react",
    "svg"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/gilbarbara/react-inlinesvg.git"
  },
  "bugs": {
    "url": "https://github.com/gilbarbara/react-inlinesvg/issues"
  },
  "homepage": "https://github.com/gilbarbara/react-inlinesvg#readme",
  "main": "lib/index.js",
  "module": "esm/index.js",
  "files": [
    "esm",
    "lib",
    "src"
  ],
  "types": "esm",
  "sideEffects": false,
  "peerDependencies": {
    "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
  },
  "dependencies": {
    "exenv": "^1.2.2",
    "react-from-dom": "^0.6.2"
  },
  "devDependencies": {
    "@gilbarbara/eslint-config": "^0.5.2",
    "@gilbarbara/helpers": "^0.8.1",
    "@gilbarbara/prettier-config": "^1.0.0",
    "@gilbarbara/tsconfig": "^0.1.1",
    "@size-limit/preset-small-lib": "^8.2.6",
    "@testing-library/jest-dom": "^5.17.0",
    "@testing-library/react": "^14.0.0",
    "@types/exenv": "^1.2.0",
    "@types/fetch-mock": "^7.3.5",
    "@types/jest": "^29.5.3",
    "@types/node": "^20.4.8",
    "@types/node-fetch": "^2.6.4",
    "@types/react": "^18.2.18",
    "@types/react-dom": "^18.2.7",
    "cross-fetch": "^4.0.0",
    "del-cli": "^5.0.0",
    "http-server": "^14.1.1",
    "husky": "^8.0.3",
    "jest": "^29.6.2",
    "jest-environment-jsdom": "^29.6.2",
    "jest-extended": "^4.0.1",
    "jest-fetch-mock": "^3.0.3",
    "jest-serializer-html": "^7.1.0",
    "jest-watch-typeahead": "^2.2.2",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "repo-tools": "^0.2.2",
    "size-limit": "^8.2.6",
    "start-server-and-test": "^2.0.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.6"
  },
  "scripts": {
    "build": "npm run clean && npm run build:cjs && npm run build:esm",
    "build:cjs": "tsc",
    "build:esm": "tsc -m es6 --outDir esm",
    "clean": "del lib/* && del esm/*",
    "watch:cjs": "npm run build:cjs -- -w",
    "watch:esm": "npm run build:esm -- -w",
    "start": "http-server test/__fixtures__ -p 1337 --cors",
    "test": "start-server-and-test start http://127.0.0.1:1337 test:coverage",
    "test:coverage": "jest --coverage --bail",
    "test:watch": "jest --watchAll --verbose",
    "lint": "eslint --ext .ts,.tsx src test",
    "format": "prettier \"**/*.{js,jsx,json,yml,yaml,css,less,scss,ts,tsx,md,graphql,mdx}\" --write",
    "validate": "npm run lint && npm run test && npm run build && npm run size",
    "size": "size-limit",
    "prepublishOnly": "npm run validate",
    "prepare": "husky install"
  },
  "eslintConfig": {
    "extends": [
      "@gilbarbara/eslint-config"
    ],
    "overrides": [
      {
        "files": [
          "test/**/*.ts?(x)"
        ],
        "rules": {
          "@typescript-eslint/ban-ts-comment": "off",
          "no-console": "off",
          "testing-library/no-container": "off",
          "testing-library/no-node-access": "off"
        }
      }
    ]
  },
  "prettier": "@gilbarbara/prettier-config",
  "size-limit": [
    {
      "name": "lib",
      "path": "./lib/index.js",
      "limit": "9 kB"
    },
    {
      "name": "esm",
      "path": "./esm/index.js",
      "limit": "9 kB"
    }
  ]
}
