{
  "name": "@ohmyperf/cli",
  "version": "0.1.1",
  "description": "Real-machine, real-browser web performance measurement CLI. Measures Core Web Vitals (LCP/INP/CLS), runs on your hardware, and produces self-contained HTML reports + slide decks.",
  "license": "Apache-2.0",
  "engines": {
    "node": ">=22.0.0"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "bin",
    "README.md",
    "LICENSE",
    "NOTICE"
  ],
  "bin": {
    "ohmyperf": "./bin/ohmyperf.mjs"
  },
  "devDependencies": {
    "playwright": "1.60.0",
    "vitest": "^2.1.8"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hoainho/ohmyperf.git",
    "directory": "apps/cli"
  },
  "bugs": {
    "url": "https://github.com/hoainho/ohmyperf/issues"
  },
  "author": "Hoài Nhớ <nhoxtvt@gmail.com>",
  "homepage": "https://github.com/hoainho/ohmyperf#readme",
  "keywords": [
    "performance",
    "web-performance",
    "core-web-vitals",
    "cwv",
    "lcp",
    "inp",
    "cls",
    "lighthouse-alternative",
    "playwright",
    "chrome-devtools-protocol",
    "cdp",
    "oopif",
    "perf-measurement",
    "cli",
    "command-line",
    "perf-cli",
    "ohmyperf"
  ],
  "dependencies": {
    "@clack/prompts": "^0.10.0",
    "citty": "^0.1.6",
    "picocolors": "^1.1.1",
    "@ohmyperf/core": "0.1.1",
    "@ohmyperf/plugins-builtin": "0.1.1",
    "@ohmyperf/reporter-csv": "0.1.1",
    "@ohmyperf/reporter-deck": "0.1.1",
    "@ohmyperf/reporter-html": "0.1.1",
    "@ohmyperf/reporter-junit": "0.1.1",
    "@ohmyperf/reporter-json": "0.1.1",
    "@ohmyperf/reporter-markdown": "0.1.1",
    "@ohmyperf/driver-playwright": "0.1.1",
    "@ohmyperf/share-client": "0.1.1",
    "@ohmyperf/design-tokens": "0.1.1",
    "@ohmyperf/viewer": "0.1.1"
  },
  "scripts": {
    "build": "tsc -b",
    "typecheck": "tsc -b",
    "lint": "eslint src",
    "test": "vitest run --passWithNoTests",
    "clean": "rimraf dist .turbo *.tsbuildinfo"
  }
}