{
  "name": "nlite",
  "version": "0.7.2",
  "description": "Experimental React 19 framework on top of Vite",
  "keywords": [
    "cloudflare",
    "framework",
    "react",
    "react-server-components",
    "routing",
    "rsc",
    "ssr",
    "vite"
  ],
  "homepage": "https://github.com/shamilkotta/nlite/tree/main/packages/nlite#readme",
  "bugs": {
    "url": "https://github.com/shamilkotta/nlite/issues"
  },
  "license": "MIT",
  "author": "Shamil (https://github.com/shamilkotta)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shamilkotta/nlite.git",
    "directory": "packages/nlite"
  },
  "bin": {
    "nlite": "./bin/nlite.js"
  },
  "files": [
    "bin",
    "client.d.ts",
    "dist",
    "LICENSE",
    "README.md"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    },
    "./link": {
      "types": "./dist/lib/link.d.mts",
      "import": "./dist/lib/link.mjs"
    },
    "./navigation": {
      "types": "./dist/lib/navigation.d.mts",
      "import": "./dist/lib/navigation.mjs"
    },
    "./headers": {
      "types": "./dist/lib/headers.d.mts",
      "import": "./dist/lib/headers.mjs"
    },
    "./adapters": {
      "types": "./dist/adapters.d.mts",
      "import": "./dist/adapters.mjs"
    },
    "./config": {
      "types": "./dist/config.d.mts",
      "import": "./dist/config.mjs"
    },
    "./client": {
      "types": "./client.d.ts"
    },
    "./mdx": {
      "types": "./dist/lib/mdx.d.mts",
      "import": "./dist/lib/mdx.mjs"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@vitejs/plugin-react": "^6.0.1",
    "@vitejs/plugin-rsc": "^0.5.23",
    "h3": "2.0.1-rc.22",
    "tinyglobby": "^0.2.16",
    "vite": "^8.0.8"
  },
  "devDependencies": {
    "@cloudflare/vite-plugin": "^1.37.1",
    "@mdx-js/rollup": "^3.1.1",
    "@types/node": "^24.8.1",
    "@types/react": "^19.2.2",
    "@types/react-dom": "^19.2.2",
    "gray-matter": "^4.0.3",
    "tsdown": "^0.21.7",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "@cloudflare/vite-plugin": "^1.37.1",
    "@mdx-js/rollup": "^3.1.1",
    "gray-matter": "^4.0.3",
    "react": "^19.2.5",
    "react-dom": "^19.2.5"
  },
  "peerDependenciesMeta": {
    "@cloudflare/vite-plugin": {
      "optional": true
    },
    "@mdx-js/rollup": {
      "optional": true
    },
    "gray-matter": {
      "optional": true
    }
  },
  "engines": {
    "node": "^20.19.0 || >=22.12.0"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch"
  }
}