{
  "name": "repo-preflight",
  "version": "1.0.10",
  "description": "Local-first CLI to check whether a JS/TS repo is actually ready to run.",
  "homepage": "https://github.com/codehassoul/repo-preflight#readme",
  "bugs": {
    "url": "https://github.com/codehassoul/repo-preflight/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/codehassoul/repo-preflight.git"
  },
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "bin": {
    "repo-preflight": "dist/src/bin.js"
  },
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "default": "./dist/src/index.js"
    }
  },
  "files": [
    "dist/src",
    "README.md",
    "LICENSE",
    "repo-preflight.config.example.json"
  ],
  "packageManager": "npm@10.9.4",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "npm run build && node dist/test/repoPreflight.test.js",
    "check": "npm run typecheck && npm test",
    "prepublishOnly": "npm test"
  },
  "keywords": [
    "cli",
    "developer-tools",
    "javascript",
    "js",
    "monorepo",
    "nodejs",
    "preflight",
    "readiness",
    "repository",
    "repo-health",
    "repo-tooling",
    "setup-check",
    "typescript"
  ],
  "author": "",
  "license": "ISC",
  "engines": {
    "node": ">=20"
  },
  "devDependencies": {
    "@types/node": "^25.5.0",
    "@types/semver": "^7.7.1",
    "typescript": "^6.0.2"
  },
  "dependencies": {
    "semver": "^7.7.4"
  }
}
