{
    "name": "@omss/framework",
    "version": "1.1.26",
    "description": "Official OMSS backend framework - Multi-provider streaming media aggregation framework with auto-discovery",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "type": "module",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.js",
            "require": "./dist/index.js",
            "default": "./dist/index.js"
        },
        "./package.json": "./package.json"
    },
    "typesVersions": {
        ">=4.1": {
            "*": [
                "dist/*"
            ]
        }
    },
    "files": [
        "dist",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "npm run clean && tsc && tsc-alias",
        "dev": "node --env-file=.env ./node_modules/tsx/dist/cli.mjs watch examples/basic-server.ts",
        "clean": "npx rimraf dist",
        "format": "prettier --write \"src/**/*.ts\"",
        "test:unit": "npx cross-env NODE_ENV=test vitest run unit --coverage",
        "test:integration": "npx cross-env NODE_ENV=test node --env-file-if-exists=.env ./node_modules/vitest/vitest.mjs run integration"
    },
    "keywords": [
        "omss",
        "streaming",
        "media",
        "backend",
        "rest-api",
        "video",
        "movies",
        "tv-shows",
        "aggregation",
        "tmdb",
        "hls",
        "dash",
        "provider",
        "scraper",
        "framework"
    ],
    "author": "OMSS Foundation",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/omss-spec/framework.git"
    },
    "bugs": {
        "url": "https://github.com/omss-spec/framework/issues"
    },
    "homepage": "https://github.com/omss-spec/framework#readme",
    "engines": {
        "node": ">=20.6.0"
    },
    "dependencies": {
        "@fastify/cors": "^11.2.0",
        "fastify": "^5.7.1",
        "ioredis": "^5.9.2"
    },
    "devDependencies": {
        "@types/ioredis": "^4.28.10",
        "@types/node": "^20.0.0",
        "@vitest/coverage-istanbul": "^4.1.6",
        "prettier": "^3.8.0",
        "tsc-alias": "^1.8.16",
        "tsx": "^4.21.0",
        "typescript": "^5.3.0",
        "vitest": "^4.1.6"
    },
    "peerDependencies": {
        "typescript": "^5.0.0"
    },
    "publishConfig": {
        "access": "public",
        "registry": "https://registry.npmjs.org/"
    }
}
