{
    "name": "cbd-mcp",
    "version": "1.0.0",
    "description": "CBD Enterprise MCP Server - Model Context Protocol compatibility layer",
    "type": "module",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "bin": {
        "cbd-mcp": "dist/index.js"
    },
    "files": [
        "dist"
    ],
    "scripts": {
        "build": "tsup src/index.ts --format esm --dts --clean",
        "build:watch": "tsup src/index.ts --format esm --dts --watch",
        "dev": "tsx src/index.ts",
        "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": [
        "mcp",
        "model-context-protocol",
        "cbd",
        "vector-database",
        "memory",
        "semantic-search",
        "server"
    ],
    "author": "CBD Team",
    "license": "MIT",
    "dependencies": {
        "@modelcontextprotocol/sdk": "^0.4.0",
        "cbd-client": "workspace:*"
    },
    "devDependencies": {
        "@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",
        "tsx": "^4.0.0",
        "typescript": "^5.0.0"
    },
    "engines": {
        "node": ">=18.0.0"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/your-org/cbd-enterprise.git",
        "directory": "packages/cbd-mcp"
    },
    "bugs": {
        "url": "https://github.com/your-org/cbd-enterprise/issues"
    },
    "homepage": "https://github.com/your-org/cbd-enterprise#readme"
}