{
  "name": "@boundaries/elements",
  "version": "2.0.1",
  "description": "Element descriptors and matchers for @boundaries tools",
  "keywords": [
    "boundaries",
    "elements",
    "hierarchy"
  ],
  "author": "Javier Brea",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/javierbrea/eslint-plugin-boundaries.git",
    "folder": "packages/elements"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "types": "dist/index.d.ts",
  "module": "./dist/index.mjs",
  "main": "dist/index.js",
  "exports": {
    ".": {
      "browser": {
        "types": "./dist/index.browser.d.ts",
        "import": "./dist/index.browser.mjs",
        "require": "./dist/index.browser.js"
      },
      "node": {
        "types": "./dist/index.d.ts",
        "import": "./dist/index.mjs",
        "require": "./dist/index.js"
      },
      "default": {
        "types": "./dist/index.d.ts",
        "import": "./dist/index.mjs",
        "require": "./dist/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "eslint-import-resolver-node": "0.3.9",
    "eslint-module-utils": "2.12.1",
    "handlebars": "4.7.9",
    "is-core-module": "2.16.1",
    "micromatch": "4.0.8"
  },
  "engines": {
    "node": ">=18.18"
  },
  "devDependencies": {
    "@types/estree": "1.0.8",
    "@types/is-core-module": "2.2.2",
    "@types/micromatch": "4.0.10",
    "@types/object-hash": "3.0.6",
    "path-browserify": "1.0.1",
    "tsup": "8.5.1"
  },
  "scripts": {
    "eslint": "eslint",
    "build": "tsup --config tsup.config.js",
    "check:all": "echo 'All checks passed'",
    "check:spell": "cspell --quiet .",
    "check:types": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "serve:mutation:report": "serve --config ./serve.test-mutation-report.json",
    "serve:unit:report": "serve --config ./serve.test-unit-report.json",
    "test:unit": "jest",
    "test:mutation": "stryker run"
  }
}