{
  "name": "@storyblok/react",
  "version": "7.3.1",
  "private": false,
  "description": "SDK to integrate Storyblok into your project using React.",
  "homepage": "https://github.com/storyblok/monoblok/tree/main/packages/react#readme",
  "bugs": {
    "url": "https://github.com/storyblok/monoblok/issues"
  },
  "license": "MIT",
  "author": "Storyblok",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/storyblok/monoblok.git",
    "directory": "packages/react"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./ssr": {
      "import": {
        "types": "./dist/ssr.d.mts",
        "default": "./dist/ssr.mjs"
      },
      "require": {
        "types": "./dist/ssr.d.cts",
        "default": "./dist/ssr.cjs"
      }
    },
    "./rsc": {
      "import": {
        "types": "./dist/rsc.d.mts",
        "default": "./dist/rsc.mjs"
      },
      "require": {
        "types": "./dist/rsc.d.cts",
        "default": "./dist/rsc.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@storyblok/richtext": "^5.3.0",
    "@storyblok/js": "^6.3.2"
  },
  "devDependencies": {
    "@babel/core": "^7.27.1",
    "@babel/preset-env": "^7.27.2",
    "@cypress/react": "^9.0.1",
    "@cypress/vite-dev-server": "^7.3.4",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.3.0",
    "@tsconfig/recommended": "^1.0.8",
    "@types/node": "^24.11.0",
    "@types/react": "19.2.3",
    "@vitejs/plugin-react": "^4.4.1",
    "babel-jest": "^29.7.0",
    "cypress": "^15.21.0",
    "jsdom": "^27.1.0",
    "oxlint": "1.76.0",
    "publint": "^0.3.22",
    "react": "^19.2.4",
    "react-dom": "^19.2.4",
    "start-server-and-test": "^2.0.11",
    "typescript": "6.0.3",
    "vite": "^6.4.3",
    "vitest": "^4.1.10",
    "@storyblok/lint-config": "0.1.0"
  },
  "peerDependencies": {
    "next": "^13 || ^14 || ^15 || ^16",
    "react": "^17 || ^18 || ^19",
    "react-dom": "^17 || ^18 || ^19"
  },
  "peerDependenciesMeta": {
    "next": {
      "optional": true
    }
  },
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": "current"
          }
        }
      ]
    ]
  },
  "release": {
    "branches": [
      "main",
      {
        "name": "rc",
        "prerelease": true
      }
    ]
  },
  "nx": {
    "implicitDependencies": [
      "!@storyblok/playground-*"
    ]
  },
  "scripts": {
    "dev": "vp pack --watch",
    "build": "vp pack",
    "test:types": "tsc --noEmit --skipLibCheck",
    "test": "pnpm run test:unit && pnpm run test:e2e:next-13 && pnpm run test:e2e:next-latest",
    "test:unit": "vp test run",
    "cy:run": "cypress run",
    "cy:open": "cypress open",
    "test:comp": "cypress run --component",
    "playground": "pnpm run --filter ./playground/react dev",
    "playground:next-latest": "pnpm run --filter ./playground/next-latest dev",
    "playground:next-13": "pnpm run --filter ./playground/next-13-app-router dev",
    "lint": "vp lint",
    "lint:fix": "vp lint --fix",
    "publint": "publint .",
    "test:watch": "vp test",
    "test:ui": "vp test --ui",
    "test:e2e:next-13": "start-server-and-test playground:next-13 http://localhost:3000/ cy:run",
    "test:e2e:next-latest": "start-server-and-test playground:next-latest http://localhost:3000/ cy:run",
    "test:e2e:watch": "start-server-and-test playground:next-latest http-get://localhost:3000/ cy:open",
    "test:coverage": "vp test run --coverage"
  }
}