{
  "name": "the-way-of-code",
  "version": "1.1.2",
  "description": "MCP server for The Way of Code - vibe coding principles based on Rick Rubin's adaptation of the Tao Te Ching",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "the-way-of-code": "dist/index.js"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "tao",
    "coding",
    "philosophy",
    "vibe",
    "rick-rubin",
    "principles",
    "ai",
    "assistant",
    "wisdom",
    "development"
  ],
  "author": "The Way of Code",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mgd1984/the-way-of-code.git",
    "directory": "mcp-server"
  },
  "homepage": "https://github.com/mgd1984/the-way-of-code#readme",
  "bugs": {
    "url": "https://github.com/mgd1984/the-way-of-code/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.5.0",
    "zod": "^3.25.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.3.4",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "jest": {
    "preset": "ts-jest/presets/default-esm",
    "extensionsToTreatAsEsm": [
      ".ts"
    ],
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.js$": "$1"
    },
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/dist/"
    ],
    "transform": {
      "^.+\\.tsx?$": [
        "ts-jest",
        {
          "useESM": true
        }
      ]
    }
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "NODE_OPTIONS='--experimental-vm-modules' jest",
    "test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch"
  }
}