{
  "name": "@marcalexiei/biome-config",
  "version": "3.0.0",
  "description": "Custom BiomeJS config",
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "biome",
    "biomejs",
    "lint",
    "format",
    "config"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/marcalexiei/biome-config"
  },
  "author": "Marco Pasqualetti @marcalexiei",
  "license": "MIT",
  "exports": {
    "./base": "./configs/base.json",
    "./css": "./configs/css.json",
    "./react": "./configs/react.json"
  },
  "files": [
    "configs"
  ],
  "peerDependencies": {
    "@biomejs/biome": "2.3.x"
  },
  "devDependencies": {
    "@biomejs/biome": "2.3.8",
    "@changesets/changelog-github": "0.5.2",
    "@changesets/cli": "2.29.8",
    "@types/node": "24.10.1",
    "lefthook": "2.0.4"
  },
  "scripts": {
    "format": "biome format",
    "format:fix": "biome format --fix",
    "format:tests": "pnpm -r exec biome format",
    "format:tests:fix": "pnpm -r exec biome format --fix",
    "lint": "biome lint",
    "lint:fix": "biome lint --fix",
    "test": "pnpm --workspace-concurrency=1 --filter=\"tests-*\" run test",
    "release": "changeset publish",
    "check-all": "pnpm run \"/^(lint|test|format|format:tests)$/\"",
    "check-rules-configuration": "node ./scripts/check-rules-configuration.ts "
  }
}