{
  "name": "@blankstate/mcp",
  "version": "0.3.1",
  "description": "Blankstate MCP Server - Protocol-based validation for autonomous AI agents",
  "author": "blankstate [mehdic] : <hello@blankstate.ai>",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "blankstate-mcp": "./bin/blankstate-mcp.js"
  },
  "files": [
    "dist",
    "bin",
    "scripts",
    "README.md"
  ],
  "keywords": [
    "mcp",
    "model-context-protocol",
    "ai-safety",
    "autonomous-agents",
    "blankstate",
    "protocol",
    "circuit-breaker",
    "agent-safety"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/blankstate-ai/blankstate-node.git",
    "directory": "packages/mcp"
  },
  "homepage": "https://blankstate.ai",
  "bugs": {
    "url": "https://github.com/blankstate-ai/blankstate-node/issues"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/index.js",
    "test": "tsx tests/test_sense_api.ts",
    "test:tools": "tsx tests/test_mcp_tools.ts",
    "test:validation": "tsx tests/test_validation.ts",
    "test:all": "npm run test && npm run test:tools && npm run test:validation",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "postinstall": "node scripts/postinstall.js || true",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "zod": "^3.23.0"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^9.0.0",
    "tsx": "^4.0.0",
    "typescript": "^5.6.0"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
