{
  "name": "digital-samba-mcp-server",
  "version": "1.0.0-beta.20",
  "packageManager": "npm@10.2.0",
  "description": "Digital Samba MCP Server - Model Context Protocol server for Digital Samba's video conferencing API",
  "type": "module",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "bin": {
    "digital-samba-mcp-server": "./bin/cli.js"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/src/index.d.ts",
        "default": "./dist/src/index.js"
      }
    },
    "./server": {
      "import": {
        "types": "./dist/src/index.d.ts",
        "default": "./dist/src/index.js"
      }
    },
    "./client": {
      "import": {
        "types": "./dist/src/digital-samba-api.d.ts",
        "default": "./dist/src/digital-samba-api.js"
      }
    }
  },
  "files": [
    "dist",
    "bin",
    "README.md",
    "PACKAGE.md",
    "TROUBLESHOOTING.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc --skipLibCheck && node scripts/copy-bin.js",
    "build:clean": "rimraf dist && tsc --skipLibCheck && node scripts/copy-bin.js",
    "build:esbuild": "rimraf dist && node scripts/build.js && node scripts/copy-bin.js",
    "build:bundle": "rimraf dist && tsc --skipLibCheck && node scripts/build.js && node scripts/copy-bin.js",
    "build:with-bundle": "rimraf dist && tsc --skipLibCheck && node scripts/build-with-bundle.js && node scripts/copy-bin.js",
    "build:prod": "rimraf dist && tsc --skipLibCheck && node scripts/build.js && node scripts/copy-bin.js",
    "start": "node dist/src/index.js",
    "dev": "tsx --inspect src/index.ts",
    "dev:watch": "tsx --watch --inspect src/index.ts",
    "debug": "npx tsx --inspect src/index.ts",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\" \"bin/**/*.js\"",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "test:unit": "jest --testPathPattern=tests/unit",
    "test:integration": "jest --testPathPattern=tests/integration",
    "prepublishOnly": "npm run build:prod",
    "prepare": "npm run build:clean",
    "size-check": "node scripts/build-size-check.js",
    "package-test": "npm pack && (if exist *.tgz del /q *.tgz)"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.11.4",
    "@types/node-fetch": "^2.6.12",
    "dotenv": "^16.5.0",
    "express": "^4.18.2",
    "node-fetch": "^3.3.2",
    "prom-client": "^15.1.3",
    "tar": "^7.4.3",
    "winston": "^3.11.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/jest": "^29.5.8",
    "@types/node": "^20.11.24",
    "@typescript-eslint/eslint-plugin": "^7.1.0",
    "@typescript-eslint/parser": "^7.1.0",
    "esbuild": "^0.20.0",
    "eslint": "^8.57.0",
    "glob": "^10.3.10",
    "jest": "^29.7.0",
    "nodemon": "^3.0.1",
    "prettier": "^3.2.5",
    "rimraf": "^5.0.10",
    "ts-jest": "^29.1.1",
    "tsx": "^4.7.0",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "digital-samba",
    "video-conferencing",
    "llm",
    "claude",
    "anthropic"
  ],
  "author": "Digital Samba",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/digital-samba/digital-samba-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/digital-samba/digital-samba-mcp-server/issues"
  },
  "homepage": "https://github.com/digital-samba/digital-samba-mcp-server#readme",
  "sideEffects": false,
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
