{
    "name": "fast-controllers",
    "version": "5.1.2",
    "description": "class based controllers, and implied folder route mapping for Fastify",
    "author": { "name": "Greg Foster (gvfoster)" },
    "main": "./index.js",
    "exports": {
        ".": "./index.js",
        "./FastController": "./FastController.js",
        "./SecureFastController": "./SecureFastController.js",
        "./fastControllers": "./fastControllers.js",
        "./errors/*": "./errors/*.js"
    },
    "repository": { "type": "git", "url": "git+https://github.com/gvfoster/fast-controllers.git" },
    "keywords": [ "Fastify", "Controllers" ],
    "license": "ISC",
    "bugs": { "url": "https://github.com/gvfoster/fast-controllers/issues" },
    "homepage": "https://github.com/gvfoster/fast-controllers#readme",
    "scripts": {
        "build-debug": "echo Building....",
        "test": "tsc -p tsconfig.tests.json && node --test build/tests/**/*.test.js",
        "run-example": "ts-node examples/index.ts"
    },
    "dependencies": { 
        "fastify": "^5.4.0"
    },
    "devDependencies": {
        "ts-node": "^10.9.2",
        "typescript": "^5.8.3"
    }
}
