{
  "name": "contentful-rich-text-html-parser",
  "version": "1.8.0",
  "description": "Convert any HTML to the Contentful Rich Text format",
  "author": {
    "name": "oleast"
  },
  "license": "MIT",
  "keywords": [
    "Contentful",
    "Rich Text",
    "Parser",
    "Converter"
  ],
  "homepage": "https://github.com/oleast/contentful-rich-text-html-parser",
  "repository": {
    "type": "git",
    "url": "https://github.com/oleast/contentful-rich-text-html-parser"
  },
  "bugs": "https://github.com/oleast/contentful-rich-text-html-parser/issues",
  "main": "./dist/cjs/index.js",
  "module": "./dist/es/index.js",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/es/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./converters": {
      "types": "./dist/types/converters.d.ts",
      "import": "./dist/es/converters.js",
      "require": "./dist/cjs/converters.js"
    }
  },
  "types": "./dist/types/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "scripts": {
    "lint": "prettier --check ./src",
    "lint:fix": "prettier --write ./src",
    "build": "tsc --project tsconfig.build.json && tsc --project tsconfig.module.json",
    "test": "vitest run",
    "test:watch": "vitest watch"
  },
  "devDependencies": {
    "@contentful/rich-text-html-renderer": "^17.0.0",
    "@semantic-release/commit-analyzer": "^13.0.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^11.0.0",
    "@semantic-release/npm": "^12.0.1",
    "@semantic-release/release-notes-generator": "^14.0.0",
    "conventional-changelog-conventionalcommits": "^8.0.0",
    "prettier": "^3.2.5",
    "semantic-release": "^24.0.0",
    "typescript": "^5.4.5",
    "vitest": "^3.0.2"
  },
  "dependencies": {
    "@contentful/rich-text-types": "^17.0.0",
    "parse5": "^7.1.2"
  }
}
