{
  "name": "@agiflowai/one-mcp",
  "description": "One MCP server package",
  "version": "0.4.0",
  "license": "AGPL-3.0",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "typescript"
  ],
  "bin": {
    "one-mcp": "./dist/cli.cjs"
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.cts",
  "module": "./dist/index.mjs",
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.29.0",
    "chalk": "5.6.2",
    "commander": "14.0.3",
    "express": "5.2.1",
    "gray-matter": "4.0.3",
    "js-yaml": "4.1.1",
    "liquidjs": "10.25.5",
    "zod": "4.3.6",
    "@agiflowai/aicode-utils": "1.1.0"
  },
  "devDependencies": {
    "@types/express": "5.0.6",
    "@types/js-yaml": "4.0.9",
    "@types/node": "25.6.0",
    "tsdown": "0.21.8",
    "typescript": "5.9.3",
    "unplugin-raw": "0.7.0",
    "vitest": "4.1.4"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./cli": {
      "import": "./dist/cli.mjs",
      "require": "./dist/cli.cjs"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "dev": "node --loader ts-node/esm src/cli.ts mcp-serve",
    "build": "tsdown",
    "test": "vitest --run",
    "typecheck": "tsc --noEmit"
  }
}