{
  "name": "liveview_react",
  "version": "1.0.0",
  "description": "A first-class React bridge for Phoenix LiveView",
  "private": true,
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/geonwoo-jeong/liveview_react.git"
  },
  "homepage": "https://github.com/geonwoo-jeong/liveview_react#readme",
  "bugs": {
    "url": "https://github.com/geonwoo-jeong/liveview_react/issues"
  },
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./server": {
      "types": "./dist/server.d.ts",
      "import": "./dist/server.js"
    },
    "./vite": {
      "types": "./dist/vite.d.ts",
      "import": "./dist/vite.js"
    }
  },
  "files": [
    "dist",
    "guides",
    "README.md",
    "CHANGELOG.md",
    "LICENSE.md",
    "package.json"
  ],
  "engines": {
    "node": ">=24.0.0"
  },
  "allowScripts": {
    "fsevents@2.3.2": true,
    "fsevents@2.3.3": true
  },
  "peerDependencies": {
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "vite": "^8.0.0"
  },
  "peerDependenciesMeta": {
    "vite": {
      "optional": true
    }
  },
  "devDependencies": {
    "@playwright/test": "1.62.1",
    "@types/node": "^24.3.0",
    "@types/react": "19.2.18",
    "@types/react-dom": "19.2.5",
    "@vitejs/plugin-react": "6.1.1",
    "fast-check": "4.9.0",
    "jsdom": "30.0.1",
    "oxfmt": "0.65.0",
    "oxlint": "1.80.0",
    "oxlint-tsgolint": "7.0.2001",
    "react": "19.2.8",
    "react-dom": "19.2.8",
    "typescript": "7.0.2",
    "vite": "8.2.2",
    "vitest": "4.1.11"
  },
  "scripts": {
    "build": "vite build && npm run build:types",
    "build:types": "tsc -p tsconfig.build.json",
    "benchmark": "vitest bench assets/js/liveview_react/performance.bench.tsx --run --disableConsoleIntercept",
    "format": "oxfmt --write \"assets/js/liveview_react/**/*.{ts,tsx}\" \"liveview_react_examples/assets/discovered-components/**/*.{ts,tsx}\" \"liveview_react_examples/assets/js/**/*.{ts,tsx}\" \"liveview_react_examples/assets/react-components/**/*.{ts,tsx}\" \"liveview_react_examples/assets/scripts/**/*.ts\" \"liveview_react_examples/assets/tailwind.config.ts\" \"liveview_react_examples/assets/vite.config.ts\" \"liveview_react_examples/playwright.config.ts\" \"liveview_react_examples/e2e/**/*.{ts,tsx}\" \"*.{json,ts}\"",
    "format:check": "oxfmt --check \"assets/js/liveview_react/**/*.{ts,tsx}\" \"liveview_react_examples/assets/discovered-components/**/*.{ts,tsx}\" \"liveview_react_examples/assets/js/**/*.{ts,tsx}\" \"liveview_react_examples/assets/react-components/**/*.{ts,tsx}\" \"liveview_react_examples/assets/scripts/**/*.ts\" \"liveview_react_examples/assets/tailwind.config.ts\" \"liveview_react_examples/assets/vite.config.ts\" \"liveview_react_examples/playwright.config.ts\" \"liveview_react_examples/e2e/**/*.{ts,tsx}\" \"*.{json,ts}\"",
    "lint": "oxlint --deny-warnings --report-unused-disable-directives .",
    "lint:fix": "oxlint --fix --deny-warnings --report-unused-disable-directives .",
    "pack:check": "npm run build && node assets/js/liveview_react/tests/package-smoke.ts",
    "prepack": "npm run build",
    "quality": "npm run format:check && npm run lint && npm run typecheck && npm test",
    "quality:ci": "npm run quality && npm run pack:check && npm audit --audit-level=high",
    "test": "vitest run",
    "pretest:e2e": "npm run build",
    "test:e2e": "playwright test --config liveview_react_examples/playwright.config.ts",
    "test:e2e:typecheck": "tsc --noEmit -p liveview_react_examples/e2e/tsconfig.json",
    "test:stress": "vitest run assets/js/liveview_react/runtime/root.lifecycle-stress.test.tsx",
    "test:watch": "vitest",
    "typecheck": "tsc -p tsconfig.json --noEmit"
  }
}
