{
  "name": "@hawtio/backend-middleware",
  "version": "1.1.0",
  "description": "An Express middleware that implements Hawtio backend",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "author": "Hawtio developer team",
  "license": "Apache-2.0",
  "files": [
    "build/main/*",
    "build/module/*",
    "!**/*.spec.*",
    "!**/*.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/hawtio/hawtio-react.git"
  },
  "keywords": [
    "hawtio",
    "express",
    "middleware"
  ],
  "scripts": {
    "start": "yarn build && node example.mjs",
    "build": "concurrently \"npm:build:*(!watch|check)\"",
    "build:check": "yarn build",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "build:watch": "tsc -p tsconfig.json -w",
    "typecheck": "tsc --build",
    "typecheck:watch": "tsc --build --watch",
    "test": "jest",
    "release": "commit-and-tag-version --path . --tag-prefix backend-middleware-v --releaseCommitMessageFormat \"chore(release): ${npm_package_name} v{{currentTag}}\"",
    "prepack": "yarn build"
  },
  "dependencies": {
    "express": "^5.2.1",
    "js-logger": "^1.6.1"
  },
  "devDependencies": {
    "@types/express": "^5",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.9.3",
    "commit-and-tag-version": "^12.7.3",
    "concurrently": "^10.0.3",
    "jest": "^30.4.2",
    "ts-jest": "^29.4.11",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  }
}