{
  "name": "smartrte-react",
  "version": "1.1.1",
  "description": "A powerful, feature-rich Rich Text Editor for React with support for tables, mathematical formulas (LaTeX/KaTeX), and media management",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./standalone/classic-editor-embed": {
      "types": "./dist/standalone/classic-editor-embed.d.ts",
      "import": "./dist/standalone/classic-editor-embed.js"
    }
  },
  "files": [
    "dist",
    "!dist/**/*.test.js",
    "!dist/**/*.test.d.ts",
    "!dist/test-harness/**",
    "README.md",
    "CHANGELOG.md"
  ],
  "keywords": [
    "react",
    "editor",
    "rich-text-editor",
    "wysiwyg",
    "rte",
    "text-editor",
    "contenteditable",
    "table-editor",
    "latex",
    "katex",
    "formula-editor",
    "media-manager",
    "image-editor",
    "react-component",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/ayush1852017/smart-rte.git",
    "directory": "packages/react"
  },
  "homepage": "https://github.com/ayush1852017/smart-rte#readme",
  "bugs": {
    "url": "https://github.com/ayush1852017/smart-rte/issues"
  },
  "author": "Smart RTE Contributors",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "peerDependencies": {
    "react": ">=18",
    "react-dom": ">=18"
  },
  "devDependencies": {
    "@axe-core/playwright": "^4.12.1",
    "@playwright/test": "^1.48.2",
    "@storybook/addon-essentials": "^8.6.14",
    "@storybook/react": "^8.6.14",
    "@storybook/react-vite": "^8.6.14",
    "@types/node": "^22",
    "@types/pdfjs-dist": "^2.10.377",
    "@types/react": "^18.3.4",
    "@types/react-dom": "^18.3.0",
    "jsdom": "^25.0.1",
    "react": "18.3.1",
    "react-dom": "18.3.1",
    "storybook": "^8.6.14",
    "typescript": "^5.6.2",
    "vite": "^5.4.8",
    "vitest": "^2.1.4"
  },
  "dependencies": {
    "jszip": "^3.10.1",
    "katex": "^0.18.4",
    "lucide-react": "^1.35.0",
    "mammoth": "^1.11.0",
    "pdfjs-dist": "^5.4.530",
    "smartrte-core": "^1.1.0"
  },
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.json",
    "dev": "pnpm build",
    "lint": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run --passWithNoTests",
    "storybook": "storybook dev -p 6006",
    "build-storybook": "storybook build",
    "e2e": "pnpm --filter smartrte-core build && pnpm build && playwright test --pass-with-no-tests"
  }
}