{
  "name": "@geenius/errors",
  "type": "module",
  "version": "0.1.0",
  "description": "Geenius Errors — framework-agnostic structured error handling",
  "main": "./packages/shared/dist/index.js",
  "types": "./packages/shared/dist/index.d.ts",
  "sideEffects": false,
  "author": "Mehdi Nabhani",
  "license": "FSL-1.1-Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/geenius-dev/geenius-errors.git"
  },
  "files": [
    "packages/shared/dist/**/*",
    "README.md",
    "LICENSE",
    "SECURITY.md",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "size-limit": [
    {
      "name": "@geenius/errors",
      "path": "packages/shared/dist/index.js",
      "limit": "12 KB",
      "gzip": true,
      "disablePlugins": [
        "@size-limit/esbuild"
      ]
    }
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "exports": {
    ".": {
      "types": "./packages/shared/dist/index.d.ts",
      "import": "./packages/shared/dist/index.js"
    }
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.2",
    "@biomejs/biome": "^2.4.15",
    "@changesets/cli": "^2.31.0",
    "@geenius/release-toolkit": "^0.10.0",
    "@size-limit/file": "^12.1.0",
    "@types/node": "^25.8.0",
    "@vitest/coverage-v8": "^4.1.6",
    "publint": "^0.3.21",
    "size-limit": "^12.1.0",
    "tsup": "^8.5.1",
    "typescript": "~6.0.3",
    "vitest": "^4.1.6"
  },
  "scripts": {
    "dev": "geenius-release-toolkit pnpm-filters type-check --sequential --shared-first packages/shared --implemented-only",
    "build": "geenius-release-toolkit pnpm-filters build --prebuild packages/shared --implemented-only --workspace-concurrency=1 && geenius-release-toolkit rewrite-imports packages/shared --derive-from-exports && geenius-release-toolkit patch-dts --dir packages/shared/dist && geenius-release-toolkit sanitize-dist --dir packages/shared/dist --maps",
    "clean": "geenius-release-toolkit pnpm-filters clean --sequential --shared-first packages/shared --implemented-only --workspace-concurrency=1",
    "type-check": "geenius-release-toolkit pnpm-filters type-check --sequential --shared-first packages/shared --implemented-only --workspace-concurrency=1",
    "typecheck": "geenius-release-toolkit run-scripts type-check",
    "lint": "geenius-release-toolkit lint --implemented-only -- --error-on-warnings",
    "lint:apps": "geenius-release-toolkit lint --apps -- --error-on-warnings --no-errors-on-unmatched",
    "lint:pub": "geenius-release-toolkit publint",
    "test:unit": "geenius-release-toolkit pnpm-filters test --sequential --shared-first packages/shared --implemented-only --workspace-concurrency=1",
    "test:contracts": "vitest run --config vitest.config.ts",
    "test:manifest": "geenius-release-toolkit manifest-contract",
    "test:pack-contract": "geenius-release-toolkit run-scripts build && geenius-release-toolkit pack-contract --test-config vitest.config.ts --test-files __tests__/dist-contract.test.ts,__tests__/exports.test.ts",
    "test:exports": "vitest run --config vitest.config.ts __tests__/exports.test.ts __tests__/parity.test.ts",
    "test:dist-contract": "vitest run --config vitest.config.ts __tests__/dist-contract.test.ts",
    "test:packed-smoke": "geenius-release-toolkit smoke-packed --check-exports-on-disk --check-tarball-purity '^package/(CHANGELOG\\.md|LICENSE|README\\.md|SECURITY\\.md|package\\.json|packages/shared/dist/index\\.(d\\.ts|js|js\\.map))$'",
    "test:types": "geenius-release-toolkit attw --ignore-rules cjs-resolves-to-esm",
    "test:coverage": "geenius-release-toolkit run-scripts build && geenius-release-toolkit coverage && geenius-release-toolkit coverage-report --optional",
    "test:diff-coverage": "geenius-release-toolkit run-scripts test:coverage && geenius-release-toolkit diff-coverage --optional --min-local 0 --min-ci 80",
    "test:mutation": "geenius-release-toolkit mutation-report",
    "test": "geenius-release-toolkit run-scripts build test:unit test:contracts test:manifest test:packed-smoke test:types",
    "size": "geenius-release-toolkit run-scripts build && geenius-release-toolkit size-check && geenius-release-toolkit bundle-budgets --optional",
    "audit:supply-chain": "geenius-release-toolkit supply-chain && geenius-release-toolkit sbom",
    "test:license": "geenius-release-toolkit license",
    "sbom": "geenius-release-toolkit sbom",
    "variants:summary": "geenius-release-toolkit variants list",
    "test:gauntlet": "geenius-release-toolkit gauntlet --steps lint,lint:apps,publint,type-check,test,test:pack-contract,test:diff-coverage,size,supply-chain,license"
  }
}