{
    "name": "cbd-client",
    "version": "1.0.0",
    "description": "CBD Enterprise Client SDK - TypeScript/JavaScript client library",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "module": "dist/index.mjs",
    "files": [
        "dist"
    ],
    "scripts": {
        "build": "tsup src/index.ts --format cjs,esm --dts --clean",
        "build:watch": "tsup src/index.ts --format cjs,esm --dts --watch",
        "test": "jest",
        "test:watch": "jest --watch",
        "test:coverage": "jest --coverage",
        "lint": "eslint src --ext .ts",
        "lint:fix": "eslint src --ext .ts --fix",
        "prepublishOnly": "pnpm run build"
    },
    "keywords": [
        "vector-database",
        "cbd",
        "memory",
        "semantic-search",
        "client",
        "sdk",
        "typescript",
        "javascript"
    ],
    "author": "CBD Team",
    "license": "MIT",
    "dependencies": {
        "@grpc/grpc-js": "^1.9.0",
        "@grpc/proto-loader": "^0.7.0",
        "google-protobuf": "^3.21.0"
    },
    "devDependencies": {
        "@types/google-protobuf": "^3.15.0",
        "@types/jest": "^29.5.0",
        "@types/node": "^20.0.0",
        "@typescript-eslint/eslint-plugin": "^6.0.0",
        "@typescript-eslint/parser": "^6.0.0",
        "eslint": "^8.45.0",
        "jest": "^29.6.0",
        "ts-jest": "^29.1.0",
        "tsup": "^7.2.0",
        "typescript": "^5.0.0"
    },
    "peerDependencies": {
        "typescript": "^5.0.0"
    },
    "engines": {
        "node": ">=18.0.0"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/your-org/cbd-enterprise.git",
        "directory": "packages/cbd-client"
    },
    "bugs": {
        "url": "https://github.com/your-org/cbd-enterprise/issues"
    },
    "homepage": "https://github.com/your-org/cbd-enterprise#readme"
}