{
  "name": "@affectively/trace-lint",
  "version": "5.0.0",
  "description": "Extensible linting framework for Chrome/DevTools trace files with loop detection rules.",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "trace-lint": "dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist-cjs/index.js"
    }
  },
  "files": [
    "dist",
    "dist-cjs",
    "README.md"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
    "dev": "bun run src/cli.ts",
    "run": "bun run src/cli.ts",
    "run:latest": "bun run src/cli.ts --latest",
    "run:capture": "bun run src/cli.ts",
    "type-check": "tsc -p tsconfig.json --noEmit",
    "prepublishOnly": "bun run build"
  },
  "keywords": [
    "trace",
    "lint",
    "devtools",
    "chrome-trace",
    "profiling",
    "diagnostics",
    "typescript"
  ],
  "author": "AFFECTIVELY <opensource@affectively.ai>",
  "license": "UNLICENSED",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/affectively-ai/trace-lint.git"
  },
  "bugs": {
    "url": "https://github.com/affectively-ai/trace-lint/issues"
  },
  "homepage": "https://github.com/affectively-ai/trace-lint#readme",
  "devDependencies": {
    "@types/node": "^22.15.29",
    "typescript": "^5.9.0"
  },
  "engines": {
    "node": ">=22.0.0",
    "bun": ">=1.0.0"
  }
}
