{
  "name": "@anthonybir/universal-dev-workspace",
  "version": "9.0.3",
  "description": "Focused MCP server with 29 core DevOps tools for local development workflows",
  "type": "module",
  "main": "./dist/server.js",
  "types": "./dist/server.d.ts",
  "bin": {
    "udw": "dist/server.js"
  },
  "files": [
    "dist/",
    "plugins/",
    ".claude-plugin/",
    "manifest.json",
    "icon.png",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "SECURITY.md"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "build": "npm run clean && tsc && node scripts/copy-module-packages.mjs && npm run bundle",
    "bundle": "esbuild ./src/server.ts --bundle --format=esm --platform=node --target=node20 --outfile=dist/server.bundle.js --minify --keep-names --external:pdf-parse",
    "bundle:mcpb": "mcpb pack . universal-dev-workspace-${npm_package_version}.mcpb",
    "release:bundle": "npm run build && npm run bundle:mcpb",
    "publish:secure": "bash scripts/npm-publish.sh",
    "dev": "tsx watch src/server.ts",
    "start:server": "node dist/server.js --stdio",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write 'src/**/*.ts'",
    "visualize": "madge --extensions ts --image deps.png src/",
    "security": "npm audit && snyk test"
  },
  "keywords": [
    "mcp",
    "claude",
    "development",
    "workspace",
    "devops",
    "typescript",
    "tools",
    "automation"
  ],
  "author": {
    "name": "Anthony Bir",
    "email": "anthony@bir.com.py"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anthonybir/universal-dev-workspace.git"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.6.0",
    "pdf-parse": "^1.1.1",
    "zod": "^3.23.0",
    "zod-to-json-schema": "^3.24.6"
  },
  "devDependencies": {
    "@anthropic-ai/mcpb": "^1.1.1",
    "@types/node": "^20.11.0",
    "@types/pdf-parse": "^1.1.5",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@vitest/coverage-v8": "^1.3.0",
    "esbuild": "^0.20.0",
    "eslint": "^9.18.0",
    "eslint-plugin-boundaries": "^4.2.0",
    "madge": "^6.1.0",
    "prettier": "^3.2.0",
    "tsx": "^4.7.0",
    "typescript": "^5.4.0",
    "vitest": "^1.3.0"
  }
}
