{
  "name": "@tryghost/errors",
  "version": "3.3.0",
  "license": "MIT",
  "author": "Ghost Foundation",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TryGhost/framework.git",
    "directory": "packages/errors"
  },
  "source": "src/index.ts",
  "files": [
    "cjs",
    "es",
    "types",
    "src"
  ],
  "sideEffects": false,
  "main": "cjs/index.js",
  "module": "es/index.js",
  "types": "types/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {},
  "devDependencies": {
    "@types/lodash": "4.17.24",
    "@types/node": "24.13.2",
    "esbuild": "0.28.1",
    "lodash": "4.18.1",
    "typescript": "6.0.3"
  },
  "scripts": {
    "dev": "echo \"Implement me!\"",
    "pretest": "NODE_ENV=production pnpm run build",
    "build": "pnpm run build:cjs && pnpm run build:es && pnpm run build:types",
    "build:cjs": "esbuild src/*.ts --target=es2020 --outdir=cjs --format=cjs",
    "build:es": "esbuild src/*.ts --target=es2020 --outdir=es --format=esm",
    "build:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir types",
    "test": "NODE_ENV=testing vitest run --coverage",
    "lint": "oxlint -c ../../.oxlintrc.json .",
    "posttest": "pnpm run lint"
  }
}