{
  "name": "@exceptionless/browser",
  "version": "3.2.1",
  "description": "JavaScript client for Exceptionless",
  "author": {
    "name": "exceptionless",
    "url": "https://exceptionless.com"
  },
  "keywords": [
    "exceptionless",
    "error",
    "feature",
    "logging",
    "tracking",
    "reporting",
    "browser"
  ],
  "repository": {
    "url": "git://github.com/exceptionless/Exceptionless.JavaScript.git",
    "type": "git"
  },
  "bugs": {
    "url": "https://github.com/exceptionless/Exceptionless.JavaScript/issues"
  },
  "license": "Apache-2.0",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "unpkg": "dist/index.bundle.min.js",
  "jsdelivr": "dist/index.bundle.min.js",
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && esbuild src/index.ts --bundle --sourcemap --target=es2022 --format=esm --outfile=dist/index.bundle.js && esbuild src/index.ts --bundle --minify --sourcemap --target=es2022 --format=esm --outfile=dist/index.bundle.min.js",
    "watch": "tsc -p ../core/tsconfig.json -w --preserveWatchOutput & tsc -p tsconfig.json -w --preserveWatchOutput & esbuild src/index.ts --bundle --sourcemap --target=es2022 --format=esm --watch --outfile=dist/index.bundle.js",
    "test": "cd ../.. && vitest run --project browser",
    "test:watch": "cd ../.. && vitest --project browser"
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "esbuild": "^0.28.0"
  },
  "dependencies": {
    "@exceptionless/core": "3.2.1",
    "stacktrace-js": "^2.0.2"
  }
}
