{
  "version": "1.0.3",
  "name": "@databuddy/nextless",
  "module": "dist/index.js",
  "type": "module",
  "private": false,
  "main": "dist/index.js",
  "description": "A lightweight, framework-agnostic React component library that provides Next.js-like functionality without the framework dependency.",
  "types": "dist/index.d.ts",
  "keywords": [
    "nextjs",
    "next",
    "alternative",
    "framework-agnostic",
    "react",
    "typescript",
    "nextless",
    "nextless-components",
    "nextless-link",
    "nextless-font",
    "nextless-script",
    "nextless-og"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "exports": {
    ".": "./dist/index.js",
    "./components": "./dist/components/index.js",
    "./link": "./dist/components/SmartLink/index.js",
    "./font": "./dist/components/Font/index.js",
    "./script": "./dist/components/Script/index.js",
    "./og": "./dist/components/OpenGraph/index.js",
    "./utils": "./dist/utils/index.js"
  },
  "scripts": {
    "lint": "bunx biome lint",
    "lint:fix": "bunx biome lint --apply",
    "format": "bunx biome format --write",
    "build": "bunx tsc --project tsconfig.json",
    "version:patch": "bun run scripts/bump-patch.ts",
    "version:minor": "bun run scripts/bump-minor.ts",
    "version:major": "bun run scripts/bump-major.ts",
    "deploy": "bun run build && bun publish --access=public"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@types/bun": "latest",
    "@types/react": "^19.0.0",
    "@types/react-router-dom": "^5.3.3"
  },
  "peerDependencies": {
    "react": ">=19.0.0",
    "react-dom": ">=19.0.0",
    "typescript": "^5.0.0"
  },
  "peerDependenciesMeta": {
    "react-router-dom": {
      "optional": true
    }
  }
}
