{
  "name": "gongio-mcp",
  "version": "2.0.0",
  "description": "MCP server for Gong.io - access calls, transcripts, and users",
  "mcpName": "io.github.JustinBeckwith/gongio-mcp",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "gongio-mcp": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "mcp",
    "gong",
    "ai",
    "claude",
    "anthropic",
    "llm"
  ],
  "author": "Justin Beckwith <justin.beckwith@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/JustinBeckwith/gongio-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/JustinBeckwith/gongio-mcp/issues"
  },
  "homepage": "https://github.com/JustinBeckwith/gongio-mcp#readme",
  "engines": {
    "node": ">=22.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.2.7",
    "@commitlint/cli": "^21.0.0",
    "@commitlint/config-conventional": "^21.0.0",
    "@types/node": "^24.9.1",
    "@vitest/coverage-v8": "^4.0.3",
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "husky": "^9.1.7",
    "typescript": "^7.0.0",
    "vitest": "^4.0.2"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.20.2",
    "zod": "^4.0.0"
  },
  "scripts": {
    "start": "node --env-file=.env dist/index.js",
    "dev": "node --env-file=.env --watch --experimental-strip-types src/index.ts",
    "build": "tsc && chmod 755 dist/index.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "biome lint .",
    "fix": "biome check --write .",
    "format": "biome check --write .",
    "validate:mcp": "node --experimental-strip-types scripts/validate-mcp.ts",
    "typecheck": "tsc --noEmit -p tsconfig.check.json"
  }
}