{
  "name": "react-html5-parser",
  "amdName": "ReactHTMLParser",
  "version": "0.2.0",
  "sideEffects": false,
  "description": "Fast, simple and small (2kb) HTML to React parser in browser",
  "type": "module",
  "source": "./src/index.ts",
  "main": "./dist/index.js",
  "umd:main": "./dist/index.umd.js",
  "unpkg": "./dist/index.umd.js",
  "module": "./dist/index.module.mjs",
  "exports": "./dist/index.modern.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "src",
    "dist",
    "README.md",
    "package.json"
  ],
  "scripts": {
    "dev": "microbundle watch --no-sourcemap --no-compress --generateTypes false",
    "sizecheck": "size-limit",
    "clean": "rimraf dist",
    "build:lib": "microbundle --external react --globals react=React",
    "build:debug": "npm run build:lib -- -o build --no-compress",
    "build": "npm run clean && npm run build:lib",
    "build:size": "npm run build && npm run sizecheck",
    "test": "jest",
    "test:watch": "jest --watchAll",
    "release": "npm run test && npm run build:size && git tag $npm_package_version && git push && git push --tags && npm publish"
  },
  "author": "devmaxxx",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/devmaxxx/react-html5-parser"
  },
  "bugs": {
    "url": "https://github.com/devmaxxx/react-html5-parser/issues"
  },
  "keywords": [
    "html",
    "parser",
    "react",
    "react-html",
    "react-html-parser",
    "html-react-parser",
    "html-parser"
  ],
  "devDependencies": {
    "@size-limit/esbuild": "^8.1.0",
    "@size-limit/file": "^8.1.0",
    "@testing-library/jest-dom": "^5.16.5",
    "@testing-library/react": "^13.4.0",
    "@types/jest": "^29.2.0",
    "@types/react": "^18.0.22",
    "@types/react-dom": "^18.0.7",
    "@types/testing-library__jest-dom": "^5.14.5",
    "jest": "^29.2.1",
    "jest-environment-jsdom": "^29.2.1",
    "microbundle": "^0.15.1",
    "prettier": "^2.7.1",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rimraf": "^3.0.2",
    "size-limit": "^8.1.0",
    "ts-jest": "^29.0.3",
    "typescript": "^4.8.4"
  },
  "peerDependencies": {
    "react": ">= 16.8.0"
  },
  "engines": {
    "node": ">=14.16"
  },
  "jest": {
    "preset": "ts-jest",
    "setupFilesAfterEnv": [
      "<rootDir>/__tests__/setupTests.ts"
    ],
    "testMatch": [
      "**/__tests__/**/*.test.ts?(x)"
    ],
    "testEnvironment": "jsdom"
  },
  "size-limit": [
    {
      "path": "./dist/index.{module,modern}.mjs",
      "import": "{ parse }",
      "limit": "1.5 kB"
    },
    {
      "path": "./dist/index.{module,modern}.mjs",
      "import": "{ parse, parseAttrs, SVG_ATTRIBUTES }",
      "limit": "2.4 kB"
    },
    {
      "path": "./dist/index.cjs",
      "limit": "2.6 kB"
    },
    {
      "path": "./dist/index.umd.js",
      "limit": "2.7 kB"
    }
  ]
}
