{
  "metapak": {
    "configs": [
      "main",
      "readme",
      "tsesm",
      "eslint",
      "jest",
      "jsarch"
    ],
    "data": {
      "childPackage": true,
      "files": "'src/**/*.ts'",
      "testsFiles": "'src/**/*.test.ts'",
      "distFiles": "'dist/**/*.js'",
      "ignore": [
        "dist"
      ],
      "bundleFiles": [
        "bin",
        "dist",
        "src"
      ]
    }
  },
  "name": "@whook/example",
  "version": "25.2.1",
  "description": "A basic Whook server",
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "whook",
    "knifecycle",
    "REST",
    "HTTP",
    "OpenAPI",
    "web",
    "service",
    "handler",
    "wrapper",
    "example"
  ],
  "scripts": {
    "apitypes": "npm run --silent whook -- generateOpenAPISchema --authenticated=true | npm run --silent whook -- generateOpenAPITypes > src/openAPISchema.d.ts",
    "architecture": "jsarch 'src/**/*.ts' > ARCHITECTURE.md && git add ARCHITECTURE.md",
    "build": "rimraf 'dist' && tsc --outDir dist",
    "cli": "env NODE_ENV=${NODE_ENV:-cli}",
    "cover": "node --run jest -- --coverage",
    "debug": "NODE_OPTIONS=${NODE_OPTIONS:-'--inspect'} NODE_ENV=${NODE_ENV:-development} DEV_MODE=1 DESTROY_SOCKETS=1 DEBUG=${DEBUG:-whook} tsx bin/whook.js",
    "dev": "NODE_ENV=${NODE_ENV:-development} DEV_MODE=1 DESTROY_SOCKETS=1 tsx src/run.js",
    "format": "node --run prettier",
    "jest": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest",
    "lint": "eslint 'src/**/*.ts'",
    "metapak": "metapak",
    "postbuild": "NODE_ENV=${NODE_ENV:-development} node dist/runBuild.js",
    "prettier": "prettier --write 'src/**/*.ts'",
    "rebuild": "swc ./src -s -d dist -C jsc.target=es2022",
    "repl": "NODE_ENV=${NODE_ENV:-development} tsx src/run.js -- __inject repl",
    "start": "NODE_ENV=${NODE_ENV:-development} node dist/run.js",
    "test": "NODE_ENV=test npm run build && node --run jest && node --run jest",
    "watch": "NODE_ENV=${NODE_ENV:-development} DEV_MODE=1 DESTROY_SOCKETS=1 tsx src/runWatch.js",
    "whook": "NODE_ENV=${NODE_ENV:-development} whook"
  },
  "author": {
    "name": "Nicolas Froidure",
    "email": "nicolas.froidure@insertafter.com",
    "url": "http://insertafter.com/en/index.html"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nfroidure/whook.git"
  },
  "bugs": {
    "url": "https://github.com/nfroidure/whook/issues"
  },
  "homepage": "https://github.com/nfroidure/whook",
  "dependencies": {
    "@whook/authorization": "^25.2.1",
    "@whook/cors": "^25.2.0",
    "@whook/swagger-ui": "^25.2.0",
    "@whook/whook": "^25.2.0",
    "application-services": "^9.0.1",
    "common-services": "^20.0.0",
    "http-auth-utils": "^7.0.1",
    "jwt-service": "^12.0.2",
    "knifecycle": "^21.3.0",
    "strict-qs": "^10.0.0",
    "type-fest": "^5.6.0",
    "ya-json-schema-types": "^2.0.2",
    "ya-open-api-types": "^2.2.0",
    "yerror": "^11.0.0",
    "yhttperror": "^9.0.2"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@swc/cli": "^0.8.1",
    "@swc/core": "^1.15.33",
    "@swc/jest": "^0.2.39",
    "@whook/dev": "^25.2.0",
    "axios": "^1.17.0",
    "esbuild-node-externals": "^1.22.0",
    "eslint": "^10.4.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jest": "^29.15.2",
    "eslint-plugin-prettier": "^5.5.5",
    "jest": "^30.4.2",
    "jsarch": "^7.1.2",
    "metapak": "^7.1.1",
    "metapak-nfroidure": "22.1.3",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "schema2dts": "^10.0.0",
    "streamtest": "^4.0.0",
    "tsx": "^4.21.0",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.3"
  },
  "contributors": [],
  "engines": {
    "node": ">=24.14.0"
  },
  "files": [
    "bin",
    "dist",
    "src",
    "LICENSE",
    "README.md",
    "CHANGELOG.md"
  ],
  "prettier": {
    "semi": true,
    "printWidth": 80,
    "singleQuote": true,
    "trailingComma": "all",
    "proseWrap": "always"
  },
  "jest": {
    "coverageReporters": [
      "lcov",
      "html"
    ],
    "testPathIgnorePatterns": [
      "/node_modules/"
    ],
    "roots": [
      "<rootDir>/src"
    ],
    "testEnvironment": "node",
    "transform": {
      "^.+\\.tsx?$": [
        "@swc/jest",
        {}
      ]
    },
    "moduleNameMapper": {
      "#(.*)": "<rootDir>/../../node_modules/$1",
      "(.+)\\.js": "$1"
    },
    "extensionsToTreatAsEsm": [
      ".ts"
    ]
  },
  "jsarch": {
    "parserOptions": {
      "plugins": [
        "typescript"
      ]
    }
  },
  "gitHead": "4eef31d0363f2a117f4acdbdb5d565a78092481e",
  "funding": {
    "type": "individual",
    "url": "https://github.com/sponsors/nfroidure"
  },
  "overrides": {
    "typescript-eslint": {
      "typescript": "^6"
    },
    "@typescript-eslint/eslint-plugin": {
      "typescript": "^6"
    },
    "@typescript-eslint/parser": {
      "typescript": "^6"
    }
  }
}
