{
  "name": "@hawk.so/nodejs",
  "version": "3.3.2",
  "description": "Node.js catcher for Hawk",
  "license": "AGPL-3.0-only",
  "engines": {
    "node": "24.x"
  },
  "main": "./dist/cjs/src/index.js",
  "module": "dist/mjs/src/index.js",
  "types": "./dist/mjs/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/mjs/src/index.d.ts",
      "import": "./dist/mjs/src/index.js",
      "require": "./dist/cjs/src/index.js"
    }
  },
  "scripts": {
    "prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
    "build": "yarn clean && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node ./create-packages.js",
    "build:watch": "yarn clean && tsc-watch",
    "example": "node ./example/example.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint . --fix",
    "lint:test": "eslint .",
    "clean": "rimraf dist"
  },
  "dependencies": {
    "@hawk.so/types": "^0.5.8",
    "axios": "^0.21.1",
    "stack-trace": "^0.0.10"
  },
  "devDependencies": {
    "@types/node": "^24.0.0",
    "eslint": "9.39.2",
    "eslint-config-codex": "^2.0.3",
    "rimraf": "^6.1.2",
    "tsc-watch": "^7.2.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/codex-team/hawk.nodejs.git"
  }
}
