{
  "name": "whenexpr",
  "type": "module",
  "version": "0.1.2",
  "description": "Tiny when-clause expression evaluator, inspired by VS Code's when clauses",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/whenexpr#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/whenexpr.git"
  },
  "bugs": "https://github.com/antfu/whenexpr/issues",
  "keywords": [
    "when",
    "when-clause",
    "expression",
    "evaluator",
    "vscode"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@antfu/eslint-config": "^8.1.1",
    "@antfu/ni": "^30.0.0",
    "@antfu/utils": "^9.3.0",
    "@types/node": "^25.6.0",
    "bumpp": "^11.0.1",
    "eslint": "^10.2.0",
    "lint-staged": "^16.4.0",
    "publint": "^0.3.18",
    "simple-git-hooks": "^2.13.1",
    "tsdown": "^0.21.9",
    "tsdown-stale-guard": "^0.1.1",
    "tsnapi": "^0.3.2",
    "tsx": "^4.21.0",
    "typescript": "^6.0.2",
    "vite": "^8.0.8",
    "vitest": "^4.1.4"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && pnpm run build && npx lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint": "eslint",
    "release": "bumpp",
    "start": "tsx src/index.ts",
    "test": "pnpm run build && vitest",
    "typecheck": "tsc"
  }
}