{
  "name": "crowd",
  "version": "0.2.11",
  "publishConfig": {
    "access": "public"
  },
  "description": "Manage your TypeScript monorepo.",
  "keywords": [
    "typescript",
    "monorepo",
    "build"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/d-fischer/crowd.git"
  },
  "author": "Daniel Fischer <daniel@d-fischer.dev>",
  "funding": "https://github.com/sponsors/d-fischer",
  "license": "MIT",
  "bin": {
    "crowd": "dist/run.js"
  },
  "type": "module",
  "dependencies": {
    "cmd-ts": "^0.11.0",
    "cross-spawn": "^7.0.6",
    "detect-indent": "^7.0.1",
    "ink": "^5.2.1",
    "ink-spinner": "^5.0.0",
    "kleur": "^4.1.5",
    "prompts": "^2.4.2",
    "react": "^18.3.1",
    "semver": "^7.6.0",
    "type-fest": "^4.11.1"
  },
  "devDependencies": {
    "@d-fischer/eslint-config": "^6.3.1",
    "@types/cross-spawn": "^6.0.6",
    "@types/ink-spinner": "^3.0.1",
    "@types/node": "^14.18.31",
    "@types/prompts": "^2.4.1",
    "@types/react": "^18.3.28",
    "@types/semver": "^7.3.12",
    "cross-env": "^7.0.3",
    "eslint": "^8.57.0",
    "husky": "^4.3.8",
    "lint-staged": "^13.0.3",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.0",
    "ts-node": "^10.9.1",
    "typescript": "~5.4.2"
  },
  "peerDependencies": {
    "typescript": ">=5.1 <6.0"
  },
  "resolutions": {
    "@types/react": "^17.0.50"
  },
  "scripts": {
    "lint": "eslint --ext js,ts src",
    "prettier:check": "prettier --check src",
    "prettier:fix": "prettier --write src",
    "build": "tsc",
    "rebuild": "rimraf lib && npm run build"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts,css,json,md}": "prettier --write",
    "*.{js,ts}": "cross-env DF_ESLINT_NO_TYPE_INFO=1 eslint --fix"
  }
}
