{
  "name": "baldrick-broth",
  "description": "Build automation tool and task runner",
  "version": "0.14.0",
  "author": {
    "name": "Olivier Huin",
    "url": "https://github.com/olih"
  },
  "keywords": [
    "CLI",
    "Task runner",
    "Build system",
    "Build tool",
    "Make"
  ],
  "license": "MIT",
  "homepage": "https://github.com/flarebyte/baldrick-broth",
  "repository": {
    "type": "git",
    "url": "https://github.com/flarebyte/baldrick-broth.git"
  },
  "bugs": "https://github.com/flarebyte/baldrick-broth/issues",
  "bin": {
    "baldrick-broth": "dist/src/cli.mjs"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/src/cli.mjs",
      "default": "./dist/src/cli.mjs",
      "types": "./dist/src"
    },
    "./package.json": {
      "default": "./package.json"
    }
  },
  "main": "./dist/src/index.mjs",
  "files": [
    "dist/src",
    "src"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsc --outDir dist",
    "test": "node --test --loader ts-node/esm test/*.test.ts",
    "cli": "node --loader ts-node/esm src/cli.mts",
    "spec": "node --loader ts-node/esm .baldrick-zest.ts"
  },
  "dependencies": {
    "chalk": "^5.2.0",
    "commander": "^10.0.1",
    "dot-prop": "^7.2.0",
    "enquirer": "^2.3.6",
    "execa": "^7.1.1",
    "handlebars": "^4.7.7",
    "json-mask": "^2.0.0",
    "listr2": "^6.2.0",
    "papaparse": "^5.4.1",
    "winston": "^3.8.2",
    "yaml": "^2.2.1",
    "zod": "^3.21.4"
  },
  "devDependencies": {
    "@types/papaparse": "^5.3.7",
    "baldrick-dev-ts": "^0.17.0",
    "baldrick-zest-engine": "^0.9.0",
    "baldrick-zest-mess": "^0.17.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.4"
  },
  "peerDependencies": {}
}