{
  "name": "@lyfie/luthor",
  "version": "2.9.0",
  "description": "Luthor presets and plug-and-play configuration for the headless editor",
  "type": "module",
  "private": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*.js",
    "dist/**/*.css",
    "dist/**/*.d.ts"
  ],
  "sideEffects": [
    "**/*.css"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./styles.css": "./dist/index.css",
    "./presets/*": {
      "types": "./dist/presets/*/index.d.ts",
      "import": "./dist/presets/*/index.js",
      "default": "./dist/presets/*/index.js"
    }
  },
  "keywords": [
    "editor",
    "rich-text",
    "lexical",
    "react",
    "typescript",
    "wysiwyg",
    "presets"
  ],
  "author": "Luthor Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/lyfie-org/luthor.git"
  },
  "bugs": {
    "url": "https://github.com/lyfie-org/luthor/issues"
  },
  "homepage": "https://github.com/lyfie-org/luthor#readme",
  "dependencies": {
    "@lexical/code": "^0.40.0",
    "@lexical/html": "^0.40.0",
    "@lexical/link": "^0.40.0",
    "@lexical/list": "^0.40.0",
    "@lexical/markdown": "^0.40.0",
    "@lexical/react": "^0.40.0",
    "@lexical/rich-text": "^0.40.0",
    "@lexical/selection": "^0.40.0",
    "@lexical/table": "^0.40.0",
    "@lexical/utils": "^0.40.0",
    "lexical": "^0.40.0",
    "@lyfie/luthor-headless": "2.9.0"
  },
  "devDependencies": {
    "@types/node": "^20.19.33",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.0",
    "eslint": "^9.32.0",
    "jsdom": "^26.1.0",
    "tsup": "^8.0.0",
    "typescript": "^5.7.3",
    "vitest": "^3.2.4",
    "@repo/eslint-config": "0.0.0",
    "@repo/typescript-config": "0.0.0"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "scripts": {
    "build": "tsup",
    "lint": "node ../../node_modules/eslint/bin/eslint.js . --max-warnings 0",
    "dev": "tsup --watch",
    "test": "node ../../node_modules/vitest/vitest.mjs run",
    "check:rule-contracts": "node ../../tools/check-rule-contracts.mjs --scope=luthor"
  }
}