{
    "name": "@lewist9x/distil-beta1",
    "version": "0.0.3",
    "description": "An opinionated library for managing LLM pipelines. Define, track, rate, and curate prompt–completion pairs for fine-tuning.",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
        "build": "tsc",
        "start": "node dist/index.js",
        "dev": "ts-node-dev --respawn src/index.ts",
        "serve": "npm run build && npm run start",
        "serve:dev": "NODE_ENV=development npm run dev"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/lekt9/distil.git"
    },
    "keywords": [
        "distil",
        "llm",
        "llmops",
        "pipeline",
        "prompt",
        "dashboard",
        "finetuning"
    ],
    "author": "Your Name",
    "license": "MIT",
    "files": [
        "dist/**/*",
        "README.md"
    ],
    "dependencies": {
        "@elastic/elasticsearch": "^8.7.0",
        "axios": "^1.4.0",
        "dotenv": "^16.0.3",
        "express": "^4.18.2",
        "express-handlebars": "^8.0.1",
        "openai": "^4.85.1"
    },
    "devDependencies": {
        "@types/express": "^4.17.17",
        "@types/node": "^18.15.11",
        "ts-node": "^10.9.1",
        "ts-node-dev": "^2.0.0",
        "typescript": "^4.9.5"
    }
}
