{
  "name": "sudopod",
  "version": "0.4.0",
  "description": "Stateless library for deploying and managing remote development environments",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "bin": {
    "sudopod": "dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc && chmod +x dist/cli.js",
    "test": "vitest run",
    "test:unit": "vitest run",
    "test:integration": "RUN_INTEGRATION_TESTS=1 vitest run --config vitest.integration.config.ts",
    "test:integration:coder": "vitest run --config vitest.integration.coder.config.ts",
    "test:integration:coder-hub": "vitest run --config vitest.integration.coder-hub.config.ts",
    "test:integration:tailscale": "RUN_INTEGRATION_TESTS=1 vitest run --config vitest.integration.tailscale.config.ts",
    "test:integration:codespaces": "vitest run --config vitest.integration.codespaces.config.ts",
    "test:e2e:codespaces": "RUN_INTEGRATION_TESTS=1 vitest run tests/integration/provider/codespaces/e2e.test.ts --config vitest.integration.codespaces.config.ts",
    "test:e2e:coder": "RUN_INTEGRATION_TESTS=1 vitest run tests/integration/provider/coder/e2e.test.ts --config vitest.integration.coder.config.ts",
    "test:e2e:hub": "RUN_INTEGRATION_TESTS=1 vitest run tests/integration/provider/hub/e2e.test.ts --config vitest.integration.hub.config.ts",
    "test:integration:client": "vitest run --config vitest.integration.client.config.ts",
    "test:package": "npm run build && node scripts/package-validation-test.ts",
    "test:e2e": "vitest run --config vitest.e2e.config.ts",
    "test:e2e:deploy": "npm run build && node scripts/e2e-deploy-test.ts",
    "test:all": "npm run test:unit && npm run test:integration",
    "test:watch": "vitest",
    "prepublishOnly": "npm run test && npm run build"
  },
  "keywords": [
    "remote",
    "development",
    "codespaces",
    "coder",
    "deployment"
  ],
  "author": "Sudocode AI",
  "license": "MIT",
  "devDependencies": {
    "@types/express": "^5.0.6",
    "@types/node": "^20.0.0",
    "@types/supertest": "^6.0.3",
    "supertest": "^7.2.2",
    "typescript": "^5.0.0",
    "vitest": "^1.0.0"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "commander": "^13.1.0",
    "express": "^5.2.1"
  }
}
