{
  "name": "detect-monorepo",
  "version": "1.2.0",
  "description": "Detect whether a directory sits inside a JS/TS monorepo workspace (pnpm, npm/yarn/bun workspaces, or rush).",
  "keywords": [
    "bun",
    "detect",
    "monorepo",
    "npm",
    "pnpm",
    "rush",
    "workspace",
    "workspaces",
    "yarn"
  ],
  "bugs": {
    "url": "https://github.com/0x80/detect-monorepo/issues"
  },
  "license": "MIT",
  "author": "Thijs Koerselman",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/0x80/detect-monorepo.git"
  },
  "files": [
    "dist",
    "src"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "vitest run",
    "format": "oxfmt",
    "lint": "oxlint -c .oxlintrc.json --type-aware",
    "check-format": "oxfmt --check",
    "check-types": "tsc --noEmit",
    "prepare": "(husky || true) && pnpm check-types && pnpm build"
  },
  "devDependencies": {
    "@codecompose/typescript-config": "^3.2.0",
    "@types/node": "^25.5.2",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "oxfmt": "^0.44.0",
    "oxlint": "^1.59.0",
    "oxlint-tsgolint": "^0.20.0",
    "tsdown": "^0.21.7",
    "typescript": "6.0.2",
    "vitest": "^4.1.3"
  },
  "lint-staged": {
    "*.{ts,tsx,js,mjs,cjs}": [
      "oxfmt",
      "oxlint -c .oxlintrc.json --type-aware"
    ]
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "packageManager": "pnpm@9.0.0+sha256.bdfc9a7b372b5c462176993e586492603e20da5864d2f8881edc2462482c76fa"
}
