{
  "name": "@lumir-company/editor",
  "version": "0.4.26",
  "private": false,
  "description": "Image-only BlockNote rich text editor with S3 upload, customizable filename transforms, UUID support, and loading spinner",
  "keywords": [
    "editor",
    "blocknote",
    "rich-text",
    "react",
    "typescript",
    "image-editor",
    "wysiwyg",
    "s3-upload",
    "loading-spinner",
    "filename-transform",
    "uuid",
    "file-upload",
    "table",
    "lumir"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=18"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lumir-company/editor.git"
  },
  "homepage": "https://github.com/lumir-company/editor#readme",
  "bugs": {
    "url": "https://github.com/lumir-company/editor/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./style.css": "./dist/style.css",
    "./api/link-preview": {
      "types": "./dist/api/link-preview.d.ts",
      "import": "./dist/api/link-preview.mjs",
      "require": "./dist/api/link-preview.js"
    }
  },
  "files": [
    "dist"
  ],
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup src/index.ts src/api/link-preview.ts --dts --format cjs,esm --sourcemap --external @tiptap/core && node scripts/copy-style.js",
    "dev": "tsup src/index.ts src/api/link-preview.ts --dts --format cjs,esm --sourcemap --external @tiptap/core --watch --onSuccess \"node scripts/copy-style.js\"",
    "type-check": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui",
    "prepublishOnly": "npm run type-check && npm run build"
  },
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0",
    "@tiptap/core": "^2.27.2"
  },
  "dependencies": {
    "@blocknote/core": "^0.35.0",
    "@blocknote/react": "^0.35.0",
    "@blocknote/mantine": "^0.35.0",
    "@floating-ui/react": "^0.26.28",
    "prosemirror-model": "^1.25.1",
    "prosemirror-state": "^1.4.3",
    "prosemirror-tables": "^1.6.4",
    "prosemirror-view": "^1.38.1"
  },
  "devDependencies": {
    "typescript": "^5.4.0",
    "tsup": "^8.0.1",
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "vitest": "^3.0.0",
    "@vitest/coverage-v8": "^3.0.0",
    "@vitest/ui": "^3.0.0",
    "@vitejs/plugin-react": "^4.0.0",
    "jsdom": "^26.0.0",
    "@testing-library/react": "^16.0.0",
    "@testing-library/jest-dom": "^6.0.0",
    "@testing-library/user-event": "^14.0.0"
  },
  "sideEffects": [
    "**/*.css"
  ],
  "overrides": {
    "@tiptap/core": "^2.27.2"
  }
}
