{
  "name": "@zerospacegg/anrubic",
  "version": "1.0.1",
  "description": "Anrubic - ZeroSpace.gg MCP Server for AI agents to access game data",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "anrubic": "dist/index.js",
    "anrubic-cli": "dist/cli.js"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "zerospace",
    "game-data",
    "ai-agent",
    "rts"
  ],
  "author": "Ruby <ruby@zerospace.gg>",
  "license": "ISC",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@types/debug": "^4.1.12",
    "debug": "^4.4.1",
    "zod": "^3.22.4",
    "@zerospacegg/iolin": "0.10.0"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "ts-node": "^10.9.2",
    "tsx": "^4.7.0",
    "typescript": "^5.3.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/zerospacegg/zsgg.git",
    "directory": "anrubic"
  },
  "bugs": {
    "url": "https://github.com/zerospacegg/zsgg/issues"
  },
  "homepage": "https://zerospace.gg",
  "scripts": {
    "build": "tsc && cp ../docs/zerospace_lore.md dist/",
    "dev": "tsx src/index.ts",
    "start": "node dist/index.js",
    "watch": "tsx watch src/index.ts",
    "clean": "rm -rf dist",
    "rebuild": "pnpm run clean && pnpm run build",
    "cli": "tsx src/cli.ts",
    "test": "tsx test/run-tests.ts",
    "test:watch": "tsx --watch test/run-tests.ts",
    "test:coverage": "node test-coverage.js",
    "test:mcp": "tsx test/mcp-protocol.test.ts",
    "test:tools": "node test-tools.js",
    "test:simple": "node test-tools.js",
    "test:ci": "tsx --test --test-reporter spec --test-reporter-destination stdout --test-coverage test/run-tests.ts"
  }
}