{
  "name": "find-monorepo-root",
  "version": "1.0.3",
  "description": "Find the root directory of a monorepo using Yarn workspaces, Bolt, Lerna or pnpm",
  "type": "module",
  "main": "lib/index.js",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": "./lib/index.js",
    "./sync": "./lib/sync.js"
  },
  "files": [
    "lib",
    "src"
  ],
  "scripts": {
    "lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
    "clean:build": "rimraf dist es lib",
    "clean:coverage": "rimraf ./test/coverage",
    "clean": "run-p clean:**",
    "build": "tsc",
    "build:watch": "tsc --w",
    "prebuild": "run-s clean:build",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest",
    "pretest": "run-s clean:coverage",
    "prepare": "is-ci || husky install .husky"
  },
  "lint-staged": {
    "**/*.{js,jsx,tsx,ts,less,md,json}": [
      "pretty-quick —-staged"
    ],
    "*.ts": [
      "eslint --fix"
    ]
  },
  "release": {
    "extends": "@bubkoo/semantic-release-config"
  },
  "keywords": [
    "monorepo",
    "monorepo-root",
    "root",
    "workspaces",
    "yarn-monorepo",
    "yarn-workspaces",
    "yarn",
    "lerna-monorepo",
    "lerna-workspaces",
    "lerna",
    "pnpm-workspaces",
    "pnpm-monorepo",
    "pnpm",
    "Bolt"
  ],
  "author": "bubkoo",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/bubkoo/find-monorepo-root.git"
  },
  "bugs": {
    "url": "https://github.com/bubkoo/find-monorepo-root/issues"
  },
  "homepage": "https://github.com/bubkoo/find-monorepo-root",
  "engines": {
    "node": ">=16"
  },
  "dependencies": {
    "find-up": "^6.3.0",
    "fs-extra": "^10.1.0"
  },
  "devDependencies": {
    "@bubkoo/commitlint-config": "^1.0.1",
    "@bubkoo/eslint-config": "^1.2.0",
    "@bubkoo/semantic-release-config": "^1.3.0",
    "@types/fs-extra": "^9.0.13",
    "@types/jest": "^29.2.2",
    "@types/node": "^18.8.3",
    "eslint": "^8.25.0",
    "husky": "^8.0.2",
    "is-ci": "^3.0.1",
    "jest": "^29.3.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.7.1",
    "pretty-quick": "^3.1.3",
    "rimraf": "^3.0.2",
    "semantic-release": "^19.0.5",
    "ts-jest": "^29.0.3",
    "ts-node": "^10.9.1",
    "tslib": "^2.4.0",
    "typescript": "^4.8.4"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  }
}
