{
    "name": "@elysiajs/static",
    "version": "1.4.10",
    "description": "Elysia plugin for serving static files",
    "license": "MIT",
    "scripts": {
        "dev": "bun run --watch example/index.ts",
        "test": "bun test && npm run test:node",
        "test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
        "build": "bun build.ts",
        "release": "npm run build && npm run test && npm publish --access public"
    },
    "keywords": [
        "elysia",
        "static",
        "public"
    ],
    "author": {
        "name": "saltyAom",
        "url": "https://github.com/SaltyAom",
        "email": "saltyaom@gmail.com"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/elysiajs/elysia-static"
    },
    "bugs": "https://github.com/elysiajs/elysia-static/issues",
    "homepage": "https://github.com/elysiajs/elysia-static",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "module": "./dist/index.js",
    "exports": {
        "./package.json": "./package.json",
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs",
            "require": "./dist/index.js"
        },
        "./utils": {
            "types": "./dist/utils.d.ts",
            "import": "./dist/utils.mjs",
            "require": "./dist/utils.js"
        },
        "./types": {
            "types": "./dist/types.d.ts",
            "import": "./dist/types.mjs",
            "require": "./dist/types.js"
        }
    },
    "devDependencies": {
        "@types/bun": "^1.3.13",
        "@types/fast-decode-uri-component": "^1.0.0",
        "@types/node": "^24.12.2",
        "@typescript-eslint/eslint-plugin": "^6.21.0",
        "elysia": "^1.4.28",
        "esbuild-fix-imports-plugin": "^1.0.23",
        "eslint": "9.6.0",
        "fast-decode-uri-component": "^1.0.1",
        "tsup": "^8.5.1",
        "typescript": "^5.9.3"
    },
    "peerDependencies": {
        "elysia": ">= 1.4.0"
    }
}
