{
    "name": "next-route-compose",
    "version": "0.1.0",
    "description": "Composable utilities for Next.js Route Handlers - auth, CORS, rate limiting, validation & more",
    "type": "module",
    "exports": {
        ".": {
            "import": {
                "types": "./dist/index.d.ts",
                "default": "./dist/index.js"
            },
            "require": {
                "types": "./dist/index.d.cts",
                "default": "./dist/index.cjs"
            }
        },
        "./utils": {
            "import": {
                "types": "./dist/utils/index.d.ts",
                "default": "./dist/utils/index.js"
            },
            "require": {
                "types": "./dist/utils/index.d.cts",
                "default": "./dist/utils/index.cjs"
            }
        }
    },
    "main": "./dist/index.cjs",
    "module": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "files": [
        "dist"
    ],
    "scripts": {
        "dev": "tsup --watch",
        "build": "tsup",
        "test": "vitest",
        "test:run": "vitest run",
        "test:coverage": "vitest run --coverage",
        "lint": "biome check .",
        "lint:fix": "biome check --write .",
        "format": "biome format --write .",
        "typecheck": "tsc --noEmit",
        "check": "biome check . && tsc --noEmit",
        "prepublishOnly": "npm run build"
    },
    "keywords": [
        "nextjs",
        "next",
        "route-handler",
        "api",
        "middleware",
        "compose",
        "auth",
        "cors",
        "rate-limit",
        "validation",
        "typescript"
    ],
    "author": "Patchy Bean",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/patchybean/next-route-compose.git"
    },
    "bugs": {
        "url": "https://github.com/patchybean/next-route-compose/issues"
    },
    "homepage": "https://github.com/patchybean/next-route-compose#readme",
    "engines": {
        "node": ">=22.0.0"
    },
    "peerDependencies": {
        "next": ">=14.0.0"
    },
    "peerDependenciesMeta": {
        "next": {
            "optional": false
        }
    },
    "devDependencies": {
        "@biomejs/biome": "^2.0.0",
        "@changesets/cli": "^2.28.0",
        "@types/node": "^22.0.0",
        "@types/react": "^19.2.7",
        "@types/react-dom": "^19.2.3",
        "next": "^16.1.1",
        "tsup": "^8.0.0",
        "typescript": "^5.8.0",
        "vitest": "^3.0.0"
    }
}