{
  "name": "stratifyjs",
  "version": "3.0.0",
  "description": "Enforce architectural layer boundaries in monorepos",
  "type": "module",
  "bin": {
    "stratify": "./lib/cli/index.js"
  },
  "main": "./lib/api/index.js",
  "types": "./lib/api/index.d.ts",
  "exports": {
    ".": {
      "source": "./src/api/index.ts",
      "types": "./lib/api/index.d.ts",
      "default": "./lib/api/index.js"
    }
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "dev": "tsc -p tsconfig.json --watch",
    "start": "node lib/cli/index.js",
    "test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
    "test:watch": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "yarn build && yarn test",
    "change": "beachball change",
    "checkchange": "beachball check --no-check",
    "format": "prettier --write .",
    "format:check": "prettier --check ."
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/smikula/stratifyjs.git"
  },
  "bugs": {
    "url": "https://github.com/smikula/stratifyjs/issues"
  },
  "homepage": "https://github.com/smikula/stratifyjs#readme",
  "keywords": [
    "monorepo",
    "architecture",
    "layers",
    "dependency",
    "enforcement"
  ],
  "files": [
    "lib/",
    "bin/",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "commander": "^14.0.3",
    "glob": "^13.0.6",
    "picocolors": "^1.1.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^25.2.3",
    "beachball": "^2.63.0",
    "jest": "^29.7.0",
    "prettier": "^3.8.1",
    "ts-jest": "^29.4.6",
    "typescript": "^5.3.2"
  },
  "license": "MIT"
}
