{
    "name": "@gobing-ai/ts-utils",
    "version": "0.5.0",
    "description": "Zero-dependency TypeScript utilities for dates, cursors, errors, output, origins, roles, and API responses.",
    "keywords": [
        "typescript",
        "utilities",
        "cursor-pagination",
        "date",
        "error-handling",
        "api-response",
        "rbac",
        "zero-dependency"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/gobing-ai/ts-libs.git",
        "directory": "packages/utils"
    },
    "author": "Robin Min <minlongbing@gmail.com>",
    "contributors": [
        "Robin Min <minlongbing@gmail.com>"
    ],
    "type": "module",
    "private": false,
    "sideEffects": false,
    "license": "Apache-2.0",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.js"
        }
    },
    "files": [
        "dist",
        "src",
        "README.md"
    ],
    "scripts": {
        "build": "tsc -p tsconfig.build.json && bun ../../scripts/builder.ts fix-dist-esm-extensions dist",
        "test": "NODE_ENV=test bun test --coverage --coverage-dir=.coverage --reporter=dots",
        "test:full": "NODE_ENV=test bun test --update-snapshots --coverage --coverage-dir=.coverage",
        "typecheck": "tsc --noEmit",
        "lint": "biome check . && bun run typecheck",
        "format": "biome check . --write",
        "check": "bun run lint && bun run test",
        "prepublishOnly": "bun run build",
        "release": "echo 'Manual publish is disabled. Releases go through GitHub Actions via Trusted Publishing — push a tag: git tag @gobing-ai/ts-utils-v<version> && git push --tags' && exit 1"
    },
    "dependencies": {},
    "devDependencies": {
        "@types/bun": "1.3.14"
    },
    "publishConfig": {
        "access": "public"
    }
}
