{
  "name": "@bscotch/stitch-config",
  "version": "0.5.1",
  "description": "Schemas and utilities for the stitch.config.json file.",
  "keywords": [
    "stitch",
    "bscotch"
  ],
  "homepage": "https://github.com/bscotch/stitch/tree/develop/packages/config#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/bscotch/stitch.git",
    "directory": "packages/config"
  },
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./project": {
      "types": "./dist/project.d.ts",
      "import": "./dist/project.js"
    }
  },
  "main": "dist/index.js",
  "bin": {
    "stitch-config": "./dist/cli.mjs"
  },
  "dependencies": {
    "zod": "4.0.15",
    "@bscotch/yy": "2.6.1"
  },
  "devDependencies": {
    "@bscotch/pathy": "^2.12.1",
    "source-map-support": "0.5.21",
    "typescript": "5.9.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc --build && node scripts/update-schemas.mjs",
    "test": "node --test src/**/*.test.ts",
    "watch": "tsc --build --watch"
  }
}