{
  "name": "@byloth/exceptions",
  "version": "2.3.1",
  "description": "Handle exceptions with ease, create better stacktraces and manage everything in the right place. ❌",
  "keywords": [
    "JavaScript",
    "TypeScript",
    "Exception",
    "Error",
    "Handling",
    "Stacktrace",
    "Traceback",
    "Library"
  ],
  "homepage": "https://github.com/Byloth/exceptions#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Byloth/exceptions.git"
  },
  "bugs": {
    "url": "https://github.com/Byloth/exceptions/issues"
  },
  "author": {
    "name": "Matteo Bilotta",
    "email": "me@byloth.net",
    "url": "https://www.byloth.dev/"
  },
  "license": "Apache-2.0",
  "type": "module",
  "files": [
    "dist",
    "src"
  ],
  "main": "./dist/exceptions.umd.cjs",
  "module": "./dist/exceptions.js",
  "exports": {
    ".": {
      "import": {
        "types": "./src/index.ts",
        "default": "./dist/exceptions.js"
      },
      "require": {
        "types": "./src/index.ts",
        "default": "./dist/exceptions.umd.cjs"
      }
    }
  },
  "types": "./src/index.ts",
  "devDependencies": {
    "@byloth/core": "~2.0.0",
    "@byloth/eslint-config-typescript": "^3.1.0",
    "@eslint/compat": "^1.2.6",
    "husky": "^9.1.7",
    "typescript": "^5.7.3",
    "vite": "^6.0.11"
  },
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "preview": "vite preview",
    "typecheck": "tsc",
    "lint": "eslint .",
    "ci": "pnpm install --frozen-lockfile"
  }
}