{
  "name": "@false00/pi-proxmox",
  "version": "1.0.0",
  "description": "Production-focused Proxmox VE automation tools for the Pi coding agent — VMs, LXC, storage, cluster, firewall, backup, HA, replication, and access control via the REST API",
  "type": "module",
  "main": "dist/index.js",
  "files": [
    "dist",
    "AGENTS.md",
    "CHANGELOG.md",
    "CONTRIBUTING.md",
    "README.md",
    "SECURITY.md",
    "docs/API_COVERAGE_AUDIT.md",
    "docs/COMPATIBILITY.md",
    "docs/EXAMPLES.md",
    "docs/PERMISSIONS.md",
    "docs/TROUBLESHOOTING.md",
    "scripts/audit-official-api.mjs",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "keywords": [
    "pi-package",
    "pi-extension",
    "pi-coding-agent",
    "proxmox",
    "proxmox-ve",
    "virtualization",
    "vm-management",
    "lxc",
    "homelab",
    "infrastructure",
    "automation",
    "false00"
  ],
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "engines": {
    "node": ">=22.0.0"
  },
  "author": "false00 <jortega@curl.red>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/false00/pi-proxmox.git"
  },
  "homepage": "https://github.com/false00/pi-proxmox#readme",
  "bugs": {
    "url": "https://github.com/false00/pi-proxmox/issues"
  },
  "directories": {
    "doc": "docs",
    "test": "tests"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ]
  },
  "scripts": {
    "test": "node tests/run.mjs",
    "test:smoke": "node tests/smoke.test.mjs",
    "test:auth": "node tests/auth.test.mjs",
    "test:pagination": "node tests/pagination.test.mjs",
    "test:vm-agent": "node tests/vm-agent.test.mjs",
    "test:execute": "node tests/execute.test.mjs",
    "test:lxc": "node tests/lxc.test.mjs",
    "test:vm": "node tests/vm.test.mjs",
    "test:upload": "node tests/upload.test.mjs",
    "test:runtime": "node tests/runtime.test.mjs",
    "test:raw-api": "node tests/raw-api.test.mjs",
    "test:package": "node tests/package.test.mjs",
    "test:ci": "npm run test:smoke && npm run test:package && npm run audit:official-api",
    "audit:official-api": "node scripts/audit-official-api.mjs",
    "lint": "echo 'no linter configured'"
  },
  "dependencies": {
    "undici": "^8.4.1"
  },
  "devDependencies": {
    "typebox": "^1.2.8"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "typebox": "*"
  }
}
