{
    "name": "venice-ai-sdk-provider",
    "version": "2.1.1",
    "description": "Venice AI provider for the Vercel AI SDK",
    "license": "Apache-2.0",
    "sideEffects": false,
    "main": "./dist/index.js",
    "module": "./dist/index.mjs",
    "types": "./dist/index.d.ts",
    "files": [
        "dist/**/*",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "tsup --tsconfig tsconfig.build.json",
        "clean": "rm -rf dist",
        "dev": "tsup --watch",
        "pack": "rm -rf dist && mkdir -p pack && tsup --minify --tsconfig tsconfig.build.json && npm pack --pack-destination=pack",
        "typecheck": "tsc --noEmit",
        "lint": "biome check",
        "lint:fix": "biome check --write",
        "format": "biome format --write",
        "prepare": "husky"
    },
    "lint-staged": {
        "*.{ts,tsx,json}": [
            "biome check --write --no-errors-on-unmatched"
        ]
    },
    "exports": {
        "./package.json": "./package.json",
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs",
            "require": "./dist/index.js"
        }
    },
    "dependencies": {
        "@ai-sdk/openai-compatible": "^2.0.51",
        "@ai-sdk/provider": "^3.0.10",
        "@ai-sdk/provider-utils": "^4.0.30"
    },
    "devDependencies": {
        "@biomejs/biome": "^2.5.1",
        "@types/node": "^26.0.0",
        "husky": "^9.1.7",
        "lint-staged": "^17.0.8",
        "tsup": "^8.5.1",
        "typescript": "^5.9.3",
        "zod": "^4.4.3"
    },
    "peerDependencies": {
        "ai": "^6.0.90"
    },
    "engines": {
        "node": ">=18"
    },
    "publishConfig": {
        "access": "public"
    },
    "homepage": "https://github.com/dpuyosa/venice-ai-sdk-provider",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/dpuyosa/venice-ai-sdk-provider.git"
    },
    "bugs": {
        "url": "https://github.com/dpuyosa/venice-ai-sdk-provider/issues"
    },
    "keywords": [
        "ai",
        "venice",
        "venice-ai",
        "vercel",
        "vercel-ai-sdk",
        "openai-compatible",
        "agent",
        "private",
        "provider"
    ]
}
