{
  "name": "@pmndrs/labs",
  "description": "🏆 JS benchmarks you can trust",
  "type": "module",
  "version": "0.9.0",
  "license": "ISC",
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "bin": {
    "labs": "./dist/cli/cli.mjs"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@clack/prompts": "^1.7.0",
    "tsx": "^4.23.12"
  },
  "devDependencies": {
    "@types/node": "^25.9.5",
    "oxlint": "^1.78.0",
    "oxlint-tsgolint": "^7.0.2001",
    "prettier": "^3.9.6",
    "tsdown": "^0.22.14",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "engines": {
    "node": ">=22.12.0"
  },
  "scripts": {
    "bench": "tsx src/cli/cli.ts",
    "build": "tsdown --config .config/build.config.ts",
    "release": "pnpm run build && pnpm publish",
    "test": "vitest -c .config/vitest.config.ts",
    "lint": "oxlint -c .config/oxlint.json",
    "format": "prettier --config .config/prettier.json --ignore-path .config/prettierignore --write .",
    "typecheck": "tsc --build --noEmit",
    "typecheck:watch": "tsc --build --watch"
  }
}