{
  "name": "adze",
  "description": "A universal, modern, and extendable logging library for JavaScript and TypeScript.",
  "version": "2.3.0",
  "main": "dist/index.js",
  "type": "module",
  "engines": {
    "node": ">=18.19.0"
  },
  "directories": {
    "doc": "docs"
  },
  "scripts": {
    "prebuild": "npm run clean",
    "build": "tsc --project tsconfig.prod.json && tsc-alias && rm -f ./dist/demo_funcs.js && rm -f ./dist/demo_funcs.d.ts",
    "build:demo": "tsc --project tsconfig.prod.json && tsc-alias",
    "clean": "rm -rf ./dist",
    "docs:build": "vuepress build docs",
    "docs:clean-dev": "vuepress dev docs --clean-cache",
    "docs:dev": "vuepress dev docs",
    "docs:update-package": "npx vp-update",
    "predemo:browser": "npm run build:demo",
    "demo:browser": "http-server -o -p 8082",
    "predemo:node": "npm run build:demo",
    "demo:node": "tsx src/demo_funcs.ts --project tsconfig.json",
    "demo:bun": "bun src/demo_funcs.ts",
    "predemo:deno": "npm run build:demo",
    "demo:deno": "deno --allow-env dist/demo_funcs.js",
    "lint": "prettier ./src --check && eslint .",
    "lint:fix": "prettier ./src --write && eslint . --fix",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui --disable-console-intercept",
    "prepare": "husky",
    "size": "size-limit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/adzejs/adze.git"
  },
  "keywords": [
    "typescript",
    "logger",
    "javascript",
    "isomorphic",
    "node",
    "browser"
  ],
  "author": "Andrew Stacy <ajstacy@gmail.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/adzejs/adze/issues"
  },
  "homepage": "https://adzejs.com",
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "semantic-release": "^24.2.0",
    "@eslint/js": "^9.5.0",
    "@size-limit/preset-small-lib": "^11.1.4",
    "@types/eslint__js": "^8.42.3",
    "@types/eslint-config-prettier": "^6.11.3",
    "@types/jsdom": "^21.1.7",
    "@types/ungap__structured-clone": "1.2.0",
    "@vitest/ui": "^2.0.5",
    "@vuepress/bundler-vite": "^2.0.0-rc.7",
    "@vuepress/plugin-markdown-container": "^2.0.0-rc.42",
    "@vuepress/theme-default": "^2.0.0-rc.11",
    "commitizen": "^4.3.0",
    "cz-conventional-changelog": "^3.3.0",
    "date-fns": "^3.6.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "happy-dom": "^20.0.2",
    "http-server": "^14.1.1",
    "husky": "^9.1.5",
    "jsdom": "^24.1.0",
    "lint-staged": "^15.2.10",
    "prettier": "3.3.2",
    "size-limit": "^11.1.4",
    "ts-node": "^10.9.2",
    "tsc-alias": "^1.8.10",
    "tsx": "^4.19.0",
    "typescript": "^5.5.2",
    "typescript-eslint": "^7.14.1",
    "vitest": "^2.0.4",
    "vue": "^3.4.0",
    "vuepress": "^2.0.0-rc.7",
    "vuepress-plugin-search-pro": "^2.0.0-rc.52"
  },
  "lint-staged": {
    "**/*": "prettier --write --ignore-unknown",
    "**/*.{js,ts}": "eslint --fix"
  },
  "dependencies": {
    "@ungap/structured-clone": "1.2.0",
    "picocolors": "1.1.1"
  },
  "size-limit": [
    {
      "path": "dist/index.js"
    }
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
