{
  "name": "@superdoc-dev/react",
  "version": "1.14.1",
  "description": "Official React wrapper for the SuperDoc document editor",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    },
    "./style.css": {
      "import": "./style.css",
      "require": "./style.css"
    }
  },
  "keywords": [
    "superdoc",
    "react",
    "document",
    "editor",
    "docx",
    "word"
  ],
  "license": "AGPL-3.0",
  "dependencies": {
    "superdoc": ">=1.0.0"
  },
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0",
    "superdoc": ">=1.0.0"
  },
  "devDependencies": {
    "@testing-library/react": "^16.3.0",
    "@types/node": "22.19.2",
    "@types/react": "^19.2.6",
    "@types/react-dom": "^19.2.3",
    "@typescript-eslint/eslint-plugin": "^8.49.0",
    "@typescript-eslint/parser": "^8.49.0",
    "eslint": "^9.39.1",
    "happy-dom": "^20.3.4",
    "react": "19.2.4",
    "react-dom": "19.2.4",
    "typescript": "^5.9.2",
    "vite": "^7.2.7",
    "vite-plugin-dts": "~4.5.4",
    "@vitejs/plugin-react": "^5.1.1",
    "vitest": "^3.2.4"
  },
  "files": [
    "dist",
    "style.css",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/superdoc-dev/superdoc.git",
    "directory": "packages/react"
  },
  "bugs": {
    "url": "https://github.com/superdoc-dev/superdoc/issues"
  },
  "homepage": "https://github.com/superdoc-dev/superdoc/tree/main/packages/react#readme",
  "scripts": {
    "build": "vite build",
    "dev": "vite build --watch",
    "test": "vitest run",
    "pretype-check": "node ../../apps/cli/scripts/ensure-superdoc-build.js --types",
    "type-check": "tsc --noEmit",
    "lint": "eslint src --ext .ts,.tsx"
  }
}