{
  "name": "koa-micro-ts",
  "version": "5.2.0",
  "description": "Microservice Typescript Framework - based on koa",
  "main": "dist/index.js",
  "scripts": {
    "clean": "rm -rf ./dist",
    "build": "tsc --build",
    "build-all": "npm run clean && npm run build && npm run build-example",
    "dev": "ts-node-dev -r tsconfig-paths/register examples/dist/dev.js",
    "build-example": "tsc --build ./examples/tsconfig.json && npm run copy-example-assets",
    "copy-example-assets": "node -e \"require('fs').cpSync('./examples/src/public', './examples/dist/public', {recursive: true});\"",
    "example": "node examples/dist/example.js",
    "lint": "biome lint .",
    "lint:fix": "biome lint --write .",
    "test": "npm run build && node test/run.mjs",
    "prepare": "npm run build",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sebhildebrandt/koa-micro-ts.git"
  },
  "author": "plusinnovations <hildebrandt@plus-innovations.com> (https://www.plus-innovations.com/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sebhildebrandt/koa-micro-ts/issues"
  },
  "files": [
    "dist/"
  ],
  "homepage": "https://github.com/sebhildebrandt/koa-micro-ts#readme",
  "keywords": [
    "http",
    "https",
    "koa",
    "microservice",
    "micro",
    "cors",
    "graceful-shutdown",
    "static-server",
    "api-doc",
    "auto-router",
    "koa-micro-ts",
    "backend"
  ],
  "dependencies": {
    "@koa/router": "^15.7.0",
    "http-graceful-shutdown": "^4.0.0",
    "jsonwebtoken": "^9.0.3",
    "koa": "^3.2.1",
    "koa-body": "^8.0.0",
    "koa-helmet": "^9.0.0",
    "koa-send": "^5.0.1"
  },
  "devDependencies": {
    "@biomejs/biome": "2.5.4",
    "@types/jsonwebtoken": "^9.0.10",
    "@types/koa": "^3.0.3",
    "@types/koa__router": "^12.0.5",
    "@types/koa-send": "^4.1.6",
    "@types/node": "^26.1.1"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
