{
    "name": "@opuu/elysia-llms-txt",
    "version": "1.1.0",
    "description": "Elysia plugin to generate llms.txt from OpenAPI/Swagger specifications.",
    "main": "dist/index.js",
    "module": "dist/index.js",
    "types": "dist/index.d.ts",
    "type": "module",
    "exports": {
        ".": {
            "import": "./dist/index.js",
            "types": "./dist/index.d.ts"
        }
    },
    "files": [
        "dist",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "bun run clean && bun run build:js && bun run build:types",
        "build:js": "bun build src/index.ts --outdir dist --target node --format esm",
        "build:types": "tsc --emitDeclarationOnly",
        "type-check": "tsc --noEmit",
        "test": "bun test",
        "test:watch": "bun test --watch",
        "test:coverage": "bun test --coverage",
        "lint": "eslint src",
        "lint:fix": "eslint src --fix",
        "format": "prettier --write src",
        "format:check": "prettier --check src",
        "dev": "bun --watch src/index.ts",
        "clean": "rm -rf dist"
    },
    "keywords": [
        "elysia",
        "openapi",
        "swagger",
        "markdown",
        "llms",
        "llms.txt",
        "llms-full.txt",
        "openapi-to-markdown",
        "elysia-plugin",
        "elysia-llms",
        "documentation",
        "api",
        "typescript",
        "yaml"
    ],
    "author": "Obaydur Rahman <hello@opu.rocks>",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/opuu/llms-txt.git"
    },
    "bugs": {
        "url": "https://github.com/opuu/llms-txt/issues"
    },
    "homepage": "https://github.com/opuu/llms-txt#readme",
    "devDependencies": {
        "@eslint/js": "^9.0.0",
        "@types/bun": "^1.2.19",
        "eslint": "^9.0.0",
        "prettier": "^3.4.0",
        "typescript": "^5.9.2",
        "typescript-eslint": "^8.0.0"
    },
    "dependencies": {
        "openapi-types": "^12.1.3"
    },
    "peerDependencies": {
        "elysia": "^1.3.4",
        "js-yaml": "^4.1.0"
    },
    "peerDependenciesMeta": {
        "js-yaml": {
            "optional": true
        }
    },
    "engines": {
        "node": ">=18.0.0",
        "bun": ">=1.0.0"
    }
}