{
  "name": "@plextv/react-lightning-plugin-flexbox",
  "version": "0.4.2",
  "description": "Adds FlexBox layout support to @plextv/react-lightning using yoga",
  "bugs": {
    "url": "https://github.com/plexinc/react-lightning/issues/new"
  },
  "license": "MIT",
  "author": "Plex Inc.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/plexinc/react-lightning.git"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/es/index.production.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/es/index.production.js",
      "require": "./dist/cjs/index.cjs",
      "types": "./dist/types/index.d.ts"
    },
    "./package.json": "./package.json",
    "./jsx": "./dist/types/types/jsx.d.ts"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {
    "tseep": "1.3.1",
    "yoga-layout": "3.2.1"
  },
  "devDependencies": {
    "@types/react": "19.2.14",
    "copyfiles": "2.4.1",
    "@repo/configs": "0.0.3"
  },
  "peerDependencies": {
    "react": "^19.2.0",
    "@plextv/react-lightning": "^0.4.2"
  },
  "volta": {
    "extends": "../../package.json"
  },
  "scripts": {
    "build": "pnpm run build:vite",
    "build:vite": "pnpm run clean && pnpm run build:types && pnpm run build:bundle",
    "build:bundle": "pnpm run build:prod && pnpm run build:dev",
    "build:prod": "vite build --mode=production",
    "build:dev": "vite build --mode=development",
    "build:types": "tsc --outDir dist/lib --declarationDir dist/types --declaration true --emitDeclarationOnly true && pnpm run build:copy-dts",
    "build:copy-dts": "copyfiles -f src/types/jsx.d.ts dist/types/types",
    "clean": "del ./dist",
    "check:types": "tsc --noEmit",
    "test:unit": "vitest run --passWithNoTests"
  }
}