{
  "name": "@goldstack/infra-hetzner",
  "version": "0.1.40",
  "description": "Utilities to work with Hetzner infrastructure via the cli.",
  "keywords": [
    "goldstack",
    "utility",
    "infrastructure",
    "IaC",
    "configuration",
    "hetzner",
    "cli"
  ],
  "homepage": "https://goldstack.party",
  "bugs": {
    "url": "https://github.com/goldstack/goldstack/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/goldstack/goldstack.git"
  },
  "license": "MIT",
  "author": "Max Rohde",
  "sideEffects": false,
  "main": "dist/src/infraHetzner.js",
  "scripts": {
    "build": "yarn clean && yarn compile",
    "build:watch": "yarn clean && yarn compile-watch",
    "clean": "rimraf ./dist",
    "compile": "tsc -p tsconfig.json",
    "compile-watch": "tsc -p tsconfig.json --watch",
    "compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
    "coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
    "generate-schema": "ts-json-schema-generator --tsconfig tsconfig.generate.json --no-type-check --path './src/types/**/*' --type 'HetznerConfiguration' -o src/schemas/accountConfigSchema.json && ts-json-schema-generator --tsconfig tsconfig.generate.json --no-type-check --path './src/types/**/*' --type 'HetznerDeployment' -o src/schemas/deploymentConfigSchema.json",
    "prepublishOnly": "yarn run build",
    "publish": "yarn npm publish --tolerate-republish",
    "test": "jest --passWithNoTests --config=./jest.config.js --runInBand",
    "patch-when-changed": "git diff --quiet HEAD^...HEAD -- . && git diff --quiet -- . && git diff --quiet --staged -- .  || yarn version patch"
  },
  "dependencies": {
    "@goldstack/infra": "0.4.41",
    "@goldstack/utils-config": "0.4.41",
    "@goldstack/utils-log": "0.3.34",
    "@goldstack/utils-package": "0.4.43",
    "@goldstack/utils-sh": "0.5.39",
    "axios": "^1.15.0",
    "handlebars": "4.7.9"
  },
  "devDependencies": {
    "@swc/core": "^1.15.8",
    "@swc/jest": "^0.2.39",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.0.3",
    "jest": "^30.2.0",
    "renamer": "^0.7.0",
    "rimraf": "^6.1.2",
    "ts-json-schema-generator": "^2.4.0",
    "typescript": "^5.9.3"
  },
  "publishConfig": {
    "main": "dist/src/infraHetzner.js"
  }
}