{
  "name": "@byline/cli",
  "private": false,
  "license": "MPL-2.0",
  "version": "4.16.0",
  "engines": {
    "node": ">=20.9.0"
  },
  "description": "Guided installer for Byline CMS into an existing TanStack Start application",
  "keywords": [
    "cms",
    "headless cms",
    "content management",
    "installer",
    "cli"
  ],
  "homepage": "https://github.com/Byline-CMS/bylinecms.dev",
  "bugs": {
    "url": "https://github.com/Byline-CMS/bylinecms.dev/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Byline-CMS/bylinecms.dev.git",
    "directory": "packages/cli"
  },
  "type": "module",
  "bin": {
    "byline": "./dist/cli.js"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@clack/prompts": "^1.7.0",
    "commander": "^15.0.0",
    "diff": "^9.0.0",
    "drizzle-orm": "^0.45.2",
    "execa": "^10.0.1",
    "jsonc-parser": "^3.3.1",
    "minimatch": "^10.2.6",
    "mysql2": "^3.23.4",
    "pg": "^8.23.0",
    "picocolors": "^1.1.1",
    "semver": "^7.8.5",
    "ts-morph": "^28.0.0",
    "yaml": "^2.9.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.5.9",
    "@types/mdast": "^4.0.4",
    "@types/node": "^26.2.0",
    "@types/pg": "^8.23.1",
    "@types/semver": "^7.8.0",
    "mdast-util-to-string": "^4.0.0",
    "remark-gfm": "^4.0.1",
    "remark-parse": "^11.0.0",
    "rimraf": "^6.1.3",
    "tsc-alias": "^1.9.2",
    "tsx": "^4.23.12",
    "typescript": "^7.0.2",
    "unified": "^11.0.5",
    "vitest": "^4.1.11"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && tsc-alias && node ./scripts/copy-templates.js && chmod +x dist/cli.js",
    "dev": "tsc -w -p tsconfig.json",
    "clean": "node scripts/clean.js node_modules dist .turbo",
    "check:artifact": "node scripts/check-package-artifact.mjs",
    "check:templates": "node scripts/check-dialect-templates.mjs",
    "sync:baselines": "node scripts/sync-db-baselines.mjs",
    "lint": "biome check --write --unsafe --diagnostic-level=error",
    "test": "vitest run --passWithNoTests",
    "test:integration": "vitest run --mode=integration",
    "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.tests.json"
  }
}