{
  "name": "tiptap-extension-resizable-image",
  "description": "Resizable image extension for Tiptap",
  "version": "2.1.0",
  "license": "MIT",
  "author": "HoHieuLuc <luchohieu@gmail.com>",
  "homepage": "https://tiptap-resizable-image.vercel.app",
  "repository": {
    "url": "git+https://github.com/HoHieuLuc/tiptap-resizable-image.git",
    "type": "git",
    "directory": "packages/tiptap-resizable-image"
  },
  "bugs": {
    "url": "https://github.com/HoHieuLuc/tiptap-resizable-image/issues"
  },
  "keywords": [
    "react",
    "tiptap",
    "library",
    "frontend",
    "resizable",
    "image",
    "rich text",
    "editor",
    "tiptap extension",
    "resize"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./styles.css": "./dist/index.css"
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@tiptap/core": "^2.27.1",
    "@tiptap/pm": "^2.27.1",
    "@tiptap/react": "^2.27.1",
    "@tiptap/starter-kit": "^2.27.1",
    "@types/html-minifier": "^4.0.6",
    "@types/react": "^18.3.27",
    "html-minifier": "^4.0.0",
    "react": "^18.3.1",
    "tsup": "^8.5.1",
    "eslint-config-custom": "0.0.0",
    "tsconfig": "0.0.0"
  },
  "peerDependencies": {
    "@tiptap/core": ">=2",
    "@tiptap/pm": ">=2",
    "@tiptap/react": ">=2",
    "react": ">=18"
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts --minify --treeshake --external react",
    "dev": "npm run build -- --watch",
    "lint": "eslint ./src"
  }
}