{
  "name": "@indutny/breakpad",
  "type": "module",
  "version": "1.2.3",
  "description": "Fast symbolication of crash reports using breakpad symbol files",
  "module": "lib/breakpad.js",
  "main": "lib/breakpad.cjs",
  "exports": {
    "import": "./lib/breakpad.js",
    "require": "./lib/breakpad.cjs"
  },
  "files": [
    "lib/*"
  ],
  "scripts": {
    "prepublish": "babel lib/*.js --out-file-extension=.cjs --out-dir=lib/",
    "format": "prettier --cache --write .",
    "lint": "npm run check:eslint && npm run check:format",
    "check:eslint": "eslint --cache .",
    "check:format": "prettier --cache --check .",
    "test": "ava && npm run lint",
    "benchmark": "node benchmark/index.js"
  },
  "author": "Fedor Indutny <238531+indutny@users.noreply.github.com>",
  "license": "MIT",
  "keywords": [
    "breakpad",
    "symbols",
    "dump_syms"
  ],
  "devDependencies": {
    "@babel/cli": "^7.24.7",
    "@babel/plugin-transform-modules-commonjs": "^7.24.7",
    "@babel/preset-env": "^7.24.7",
    "ava": "^6.1.3",
    "babel-plugin-add-import-extension": "^1.6.0",
    "eslint": "^9.4.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-ava": "^15.0.1",
    "prettier": "^3.3.2"
  },
  "dependencies": {
    "@indutny/breakpad-parser-wasm": "^1.0.3"
  }
}
