{
  "name": "@uniweb/runtime",
  "version": "0.27.2",
  "description": "Minimal runtime for loading Uniweb foundations",
  "type": "module",
  "exports": {
    ".": "./src/index.jsx",
    "./ssr": "./dist/ssr.js",
    "./provider": "./src/RuntimeProvider.jsx",
    "./setup": "./src/setup.js",
    "./foundation-loader": "./src/foundation-loader.js",
    "./default-fetcher": "./src/default-fetcher.js"
  },
  "files": [
    "src",
    "dist/ssr.js",
    "dist/ssr.js.map"
  ],
  "keywords": [
    "uniweb",
    "runtime",
    "react",
    "foundation"
  ],
  "author": "Proximify",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/uniweb/runtime.git"
  },
  "homepage": "https://github.com/uniweb/runtime#readme",
  "bugs": {
    "url": "https://github.com/uniweb/runtime/issues"
  },
  "engines": {
    "node": ">=20.19"
  },
  "dependencies": {
    "@uniweb/core": "^0.29.6",
    "@uniweb/theming": "^0.1.15"
  },
  "devDependencies": {
    "@vitejs/plugin-react": "^4.5.2",
    "esbuild": "^0.21.0 || ^0.23.0 || ^0.24.0 || ^0.25.0 || ^0.27.0",
    "vite": "^7.3.1",
    "vitest": "^4.1.7",
    "@uniweb/build": "0.55.0"
  },
  "peerDependencies": {
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "react-router-dom": "^6.0.0 || ^7.0.0"
  },
  "uniweb": {
    "bundledDeps": [
      "@uniweb/core",
      "@uniweb/theming"
    ]
  },
  "scripts": {
    "build:ssr": "vite build --config vite.config.ssr.js",
    "build:app": "vite build --config vite.config.app.js",
    "build": "npm run build:ssr && npm run build:app",
    "build:worker": "node build-worker.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "channel:publish": "node scripts/release-channel.mjs",
    "channel:audit": "node scripts/audit-channel.mjs"
  }
}