{
    "name": "@eyjs/bootstrap",
    "version": "1.0.0",
    "description": "Application bootstrap and service loading for EyJS framework",
    "main": "index.ts",
    "type": "module",
    "scripts": {
        "build": "tsc",
        "dev": "tsc --watch",
        "test": "bun test"
    },
    "exports": {
        ".": {
            "import": "./index.ts",
            "types": "./index.ts"
        }
    },
    "keywords": [
        "bootstrap",
        "service-loader",
        "auto-loading",
        "application",
        "typescript",
        "eyjs"
    ],
    "author": "EyJS Team",
    "license": "MIT",
    "dependencies": {
        "glob": "^10.3.10"
    },
    "devDependencies": {
        "@types/node": "^20.0.0",
        "typescript": "^5.0.0"
    }
}