{
  "name": "devtools-tracing",
  "version": "1.7.2",
  "description": "Utilities for working with trace files",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "devtools-tracing": "dist/cli.js"
  },
  "scripts": {
    "build": "tsc --emitDeclarationOnly || true; esbuild index.ts --bundle --platform=node --outfile=dist/index.js --format=cjs && esbuild cli.ts --bundle --platform=node --outfile=dist/cli.js --format=cjs --banner:js='#!/usr/bin/env node' --external:../",
    "generate": "tsx generate.ts",
    "test": "tsx --test src/**/*.test.ts",
    "size": "du -sh dist/",
    "prepublishOnly": "npm run generate && npm run build"
  },
  "author": "Samuel Maddock <sam@samuelmaddock.com>",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/samuelmaddock/devtools-tracing.git"
  },
  "license": "BSD-3-Clause",
  "devDependencies": {
    "@typescript-eslint/typescript-estree": "^8.46.2",
    "chrome-devtools-frontend": "^1.0.1632065",
    "esbuild": "^0.27.4",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3"
  },
  "prettier": {
    "tabWidth": 2,
    "singleQuote": true
  }
}
