{
    "name": "@nivinjoseph/n-web",
    "version": "7.3.7",
    "description": "Koa based web application framework",
    "packageManager": "yarn@4.14.1",
    "type": "module",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "default": "./dist/index.js"
        },
        "./client": {
            "types": "./dist/index.client.d.ts",
            "default": "./dist/index.client.js"
        }
    },
    "types": "./dist/index.d.ts",
    "scripts": {
        "ts-compile": "tsc -p .",
        "ts-compile-watch": "yarn ts-compile -w",
        "ts-lint": "eslint . --ext .ts",
        "ts-build": "yarn ts-compile && yarn ts-lint",
        "ts-build-dist": "yarn ts-build && tsc -p ./dist",
        "clean-src": "find ./src -name '*.js' -delete -o -name '*.map' -delete",
        "clean-test": "find ./test -name '*.js' -delete -o -name '*.map' -delete",
        "clean-test-app": "find ./test-app -name '*.js' -delete -o -name '*.map' -delete",
        "clean-dist": "find ./dist -name '*.js' -delete -o -name '*.map' -delete -o -name '*.ts' -delete",
        "clean-all": "yarn clean-src && yarn clean-test && yarn clean-test-app && yarn clean-dist",
        "test": "yarn ts-build && node --test --enable-source-maps ./test/**/*.test.js",
        "node-watch": "node --watch --inspect=4000 --enable-source-maps ./test-app/server.js env=dev",
        "setup-redis-server": "docker run --name test-redis -p 6379:6379 -d redis:7.0 && sleep 5",
        "dev": "yarn ts-build && concurrently -p \"[{name}]\" -n \"TS,APP\" -c \"blue.bold,green.bold\"  \"yarn ts-compile-watch\" \"yarn node-watch\"",
        "publish-package": "yarn ts-build-dist && git add . && git commit -m 'preparing to publish new version' && yarn version patch && git add . && git commit -m 'new version' && git push && npm publish --access=public"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/nivinjoseph/n-web.git"
    },
    "keywords": [
        "koa",
        "web framework"
    ],
    "author": "NiviN",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/nivinjoseph/n-web/issues"
    },
    "homepage": "https://github.com/nivinjoseph/n-web#readme",
    "devDependencies": {
        "@eslint/js": "9.39.1",
        "@nivinjoseph/n-validate": "3.0.1",
        "@stylistic/eslint-plugin": "5.5.0",
        "@types/kcors": "2.2.9",
        "@types/koa": "3.0.3",
        "@types/koa-bodyparser": "4.3.13",
        "@types/koa-compress": "4.0.7",
        "@types/koa-static": "4.0.4",
        "@types/node": "24.10",
        "concurrently": "9.2.1",
        "eslint": "9.39.1",
        "eslint-import-resolver-typescript": "4.4.4",
        "eslint-plugin-import": "2.32.0",
        "redis": "5.12.1",
        "typescript": "5.9.3",
        "typescript-eslint": "8.46.3"
    },
    "dependencies": {
        "@koa/router": "15.7.0",
        "@nivinjoseph/n-config": "2.0.5",
        "@nivinjoseph/n-defensive": "2.0.3",
        "@nivinjoseph/n-exception": "2.0.3",
        "@nivinjoseph/n-ext": "2.0.5",
        "@nivinjoseph/n-ject": "4.0.1",
        "@nivinjoseph/n-log": "3.0.9",
        "@nivinjoseph/n-sec": "7.0.3",
        "@nivinjoseph/n-sock": "2.0.11",
        "@nivinjoseph/n-svc": "4.0.1",
        "@nivinjoseph/n-util": "4.0.2",
        "kcors": "2.2.2",
        "koa": "3.2.1",
        "koa-bodyparser": "4.4.1",
        "koa-compress": "5.2.2",
        "koa-static": "5.0.0",
        "mobx": "6.16.1"
    },
    "engines": {
        "node": ">=24.10"
    }
}
