{
  "name": "aria-ease",
  "version": "7.8.4",
  "description": "Accessibility infrastructure for the entire frontend engineering lifecycle. Build accessible patterns, run automated audits, verify component interactions, and gate deployments — all in one system.",
  "main": "dist/index.cjs",
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "dev": "tsup ./index.ts --watch",
    "test": "vitest run --reporter verbose -- --config ./vitest.config.mts",
    "bench": "node --loader ts-node/esm benchmarks/sample.bench.ts",
    "lint": "eslint src --ext .ts",
    "prepublishOnly": "tsc && npm run lint && npm run test && npm run build && npm login --registry https://registry.npmjs.org/",
    "release": "standard-version",
    "release:patch": "standard-version --release-as patch",
    "release:minor": "standard-version --release-as minor",
    "release:major": "standard-version --release-as major",
    "clean": "rm -rf dist",
    "build:core": "tsup ./index.ts --format esm,cjs --dts --outDir dist --external @testing-library/react --external @axe-core/playwright --external playwright --minify",
    "build:modules": "tsup ./src/combobox/index.ts ./src/accordion/index.ts ./src/block/index.ts ./src/checkbox/index.ts ./src/menu/index.ts ./src/tabs/index.ts ./src/radio/index.ts ./src/toggle/index.ts ./src/contracts/index.ts --format esm,cjs --dts --treeshake --outDir dist/src --minify",
    "build:test": "tsup ./src/utils/test/index.ts --format esm,cjs --dts --treeshake --external @testing-library/react --external playwright --external @playwright/test --outDir dist/src/utils/test --minify",
    "build:dsl": "tsup ./src/utils/test/dsl/index.ts --format esm,cjs --dts --treeshake --outDir dist/src/utils/test/dsl --minify",
    "build:cli": "tsup ./src/utils/cli/cli.ts --format esm,cjs --dts --outDir dist --external commander --external chalk --external @testing-library/react --external @axe-core/playwright --external playwright --minify",
    "build": "npm run clean && npm run build:core && npm run build:modules && npm run build:test && npm run build:dsl && npm run build:cli"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aria-ease/aria-ease.git"
  },
  "keywords": [
    "a11y",
    "ARIA",
    "Accessibility",
    "Assistive Technology",
    "Keyboard Interaction",
    "Focus Management",
    "WCAG Guidelines",
    "Inclusive Design",
    "WAI-ARIA",
    "disability",
    "web-accessibility"
  ],
  "author": "Isaac Akinduyile",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/aria-ease/aria-ease/issues"
  },
  "homepage": "https://ariaease.site/",
  "devDependencies": {
    "@axe-core/playwright": "^4.11.0",
    "@playwright/test": "^1.57.0",
    "@swc/core": "^1.13.5",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/react": "^16.3.0",
    "@types/fs-extra": "^11.0.4",
    "benchmark": "^2.1.4",
    "eslint": "^9.34.0",
    "jsdom": "^29.0.1",
    "prettier": "^3.6.2",
    "standard-version": "^9.5.0",
    "tsup": "^8.5.0",
    "typescript": "^5.9.2",
    "typescript-eslint": "^8.53.0",
    "vite": "^7.2.6",
    "vitest": "^4.0.15"
  },
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./accordion": {
      "types": "./dist/src/accordion/index.d.ts",
      "import": "./dist/src/accordion/index.js",
      "require": "./dist/src/accordion/index.cjs"
    },
    "./block": {
      "types": "./dist/src/block/index.d.ts",
      "import": "./dist/src/block/index.js",
      "require": "./dist/src/block/index.cjs"
    },
    "./checkbox": {
      "types": "./dist/src/checkbox/index.d.ts",
      "import": "./dist/src/checkbox/index.js",
      "require": "./dist/src/checkbox/index.cjs"
    },
    "./combobox": {
      "types": "./dist/src/combobox/index.d.ts",
      "import": "./dist/src/combobox/index.js",
      "require": "./dist/src/combobox/index.cjs"
    },
    "./menu": {
      "types": "./dist/src/menu/index.d.ts",
      "import": "./dist/src/menu/index.js",
      "require": "./dist/src/menu/index.cjs"
    },
    "./radio": {
      "types": "./dist/src/radio/index.d.ts",
      "import": "./dist/src/radio/index.js",
      "require": "./dist/src/radio/index.cjs"
    },
    "./toggle": {
      "types": "./dist/src/toggle/index.d.ts",
      "import": "./dist/src/toggle/index.js",
      "require": "./dist/src/toggle/index.cjs"
    },
    "./test": {
      "types": "./dist/src/utils/test/index.d.ts",
      "import": "./dist/src/utils/test/index.js",
      "require": "./dist/src/utils/test/index.cjs"
    },
    "./tabs": {
      "types": "./dist/src/tabs/index.d.ts",
      "import": "./dist/src/tabs/index.js",
      "require": "./dist/src/tabs/index.cjs"
    },
    "./contract": {
      "types": "./dist/src/utils/test/dsl/index.d.ts",
      "import": "./dist/src/utils/test/dsl/index.js",
      "require": "./dist/src/utils/test/dsl/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "commander": "^14.0.1",
    "fs-extra": "^11.3.2"
  },
  "peerDependencies": {
    "@axe-core/playwright": "^4.10.2",
    "playwright": "^1.57.0"
  },
  "peerDependenciesMeta": {
    "@axe-core/playwright": {
      "optional": true
    },
    "playwright": {
      "optional": true
    }
  },
  "bin": {
    "aria-ease": "./dist/cli.js"
  }
}
