{
  "name": "lavy",
  "version": "2.0.7",
  "description": "Enterprise-level code quality and project configuration management tool",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    },
    "./tsconfig.base.json": "./tsconfig.base.json",
    "./template/": "./template/"
  },
  "files": [
    "dist/",
    "template/",
    "tsconfig.base.json"
  ],
  "type": "module",
  "keywords": [
    "lavy",
    "eslint",
    "stylelint",
    "prettier",
    "biome",
    "lint",
    "linter",
    "code-quality",
    "cli",
    "frontend",
    "typescript",
    "react",
    "vue",
    "flat-config",
    "commit-lint",
    "git-hooks",
    "project-setup",
    "code-standards"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gvray/lavy.git"
  },
  "author": {
    "name": "Gavin Ray",
    "email": "gavinraydev@gmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/gvray/lavy/issues"
  },
  "bin": {
    "lavy": "dist/index.js"
  },
  "homepage": "https://github.com/gvray/lavy#readme",
  "engines": {
    "node": ">=18"
  },
  "peerDependencies": {
    "eslint": "^9.0.0",
    "stylelint": "^16.0.0"
  },
  "dependencies": {
    "@biomejs/biome": "^1.5.3",
    "@types/debug": "^4.1.12",
    "@types/glob": "^8.1.0",
    "@types/semver": "^7.5.6",
    "boxen": "^5.1.2",
    "cac": "^6.7.14",
    "cfonts": "^3.3.0",
    "chalk": "^4.1.2",
    "colorette": "^2.0.20",
    "commander": "^11.1.0",
    "cross-spawn": "^7.0.3",
    "debug": "^4.3.4",
    "eslint": "^9.26.0",
    "execa": "^5.1.1",
    "fs-extra": "^11.2.0",
    "glob": "^10.3.10",
    "handlebars": "^4.7.8",
    "inquirer": "^9.2.12",
    "ora": "^8.2.0",
    "prettier": "^3.2.5",
    "prompts": "^2.4.2",
    "semver": "^7.5.4",
    "stylelint": "^16.0.0",
    "typescript": "~5.3.3",
    "update-notifier": "^7.3.1"
  },
  "devDependencies": {
    "@types/cross-spawn": "^6.0.6",
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.11.19",
    "@types/prompts": "^2.4.9",
    "@typescript-eslint/eslint-plugin": "^7.0.1",
    "@typescript-eslint/parser": "^7.0.1",
    "@vitest/coverage-v8": "^1.2.2",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-vitest": "^0.3.20",
    "vitest": "^1.2.2"
  },
  "scripts": {
    "start": "tsx src/index.ts",
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rimraf dist",
    "lint": "biome lint ./",
    "format": "biome format --write ./",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}