{
    "name": "@gravito/orbit-auth",
    "version": "0.3.0-alpha.0",
    "publishConfig": {
        "access": "public"
    },
    "description": "Standard Authentication Orbit for Galaxy Architecture using Hono JWT",
    "module": "./dist/index.mjs",
    "main": "./dist/index.cjs",
    "type": "module",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs",
            "require": "./dist/index.cjs"
        }
    },
    "files": [
        "dist",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "bun run build.ts",
        "test": "bun test",
        "typecheck": "tsc --noEmit"
    },
    "keywords": [
        "gravito",
        "orbit",
        "auth",
        "jwt"
    ],
    "author": "Carl Lee <carllee1983@gmail.com>",
    "license": "MIT",
    "peerDependencies": {
        "gravito-core": "^0.3.0-alpha.0",
        "hono": "^4.0.0"
    },
    "devDependencies": {
        "gravito-core": "workspace:*",
        "hono": "^4.11.1",
        "@types/bun": "latest",
        "typescript": "^5.9.3"
    }
}