{
  "name": "roleprep",
  "version": "0.3.2",
  "private": false,
  "type": "commonjs",
  "bin": {
    "roleprep": "bin/roleprep.js"
  },
  "files": [
    "bin",
    "cv_variants/generate_variants.js",
    "cv_variants/README.md",
    "landing",
    "lifecycle/*.js",
    "lifecycle/gui/dist",
    "lifecycle/lib",
    "lifecycle/migrations",
    "lifecycle/policies/*.example.*",
    "lifecycle/server/dist",
    "linkedin_search/*.js",
    "linkedin_search/lib",
    "linkedin_search/README.md",
    "linkedin_search/search_profile.example.json",
    "local_worker/roleprep-local-worker.js",
    "documents/examples",
    "CHANGELOG.md",
    "README.md"
  ],
  "scripts": {
    "build": "npm run dashboard:build",
    "test": "vitest run",
    "check": "bash scripts/roleprep-ci-check.sh",
    "smoke": "ROLEPREP_NO_OPEN=1 ROLEPREP_LOCAL=1 node scripts/roleprep-local-smoke.js",
    "dashboard:smoke": "ROLEPREP_NO_OPEN=1 ROLEPREP_LOCAL=1 node scripts/roleprep-dashboard-smoke.js",
    "dashboard:install": "npm install --prefix lifecycle/server && npm install --prefix lifecycle/gui",
    "dashboard:build": "npm --prefix lifecycle/gui run build && npm --prefix lifecycle/server run build",
    "dashboard:dev": "npm run dashboard:build && node lifecycle/server/dist/index.js",
    "roleprep:start": "node bin/roleprep.js start",
    "roleprep:restart": "node bin/roleprep.js restart",
    "roleprep:stop": "node bin/roleprep.js stop",
    "roleprep:status": "node bin/roleprep.js status",
    "roleprep:login:linkedin": "node bin/roleprep.js login linkedin",
    "roleprep:migrate": "node lifecycle/migrate.js",
    "roleprep:search-batch": "node lifecycle/search_batch.js",
    "roleprep:backfill-keywords": "node lifecycle/backfill_job_keywords.js",
    "roleprep:evaluate-external-answers": "node lifecycle/evaluate_external_answers.js",
    "roleprep:audit-human-input": "node lifecycle/audit_human_input.js",
    "roleprep:import-answer-bank": "node lifecycle/import_answer_bank.js",
    "roleprep:triage-human-input": "node lifecycle/triage_human_input.js",
    "roleprep:promote-ready-human-input": "node lifecycle/promote_ready_human_input.js",
    "roleprep:submit-approved": "node lifecycle/submit_approved.js",
    "roleprep:summary": "node lifecycle/send_daily_summary.js",
    "roleprep:watchdog": "node lifecycle/watchdog.js",
    "worker:connect-linkedin": "node local_worker/roleprep-local-worker.js connect-linkedin",
    "worker:status": "node local_worker/roleprep-local-worker.js status",
    "worker:doctor": "node local_worker/roleprep-local-worker.js doctor",
    "landing:deploy": "bash scripts/roleprep-static-site-deploy.sh",
    "landing:provision": "bash scripts/roleprep-static-site-provision.sh",
    "pack:check": "npm run check && npm pack --dry-run",
    "publish:dry-run": "npm run check && npm publish --access public --dry-run",
    "publish:npm": "npm run check && npm publish --access public"
  },
  "dependencies": {
    "dotenv": "^16.6.1",
    "express": "^5.2.1",
    "nodemailer": "^7.0.10",
    "playwright-core": "^1.54.2",
    "puppeteer-core": "^24.40.0"
  },
  "description": "RolePrep is a local-first job-market research and interview preparation app.",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lukasijus/roleprep.git"
  },
  "keywords": [
    "jobs",
    "interview-prep",
    "linkedin",
    "playwright",
    "sqlite",
    "local-first"
  ],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/lukasijus/roleprep/issues"
  },
  "homepage": "https://github.com/lukasijus/roleprep#readme",
  "engines": {
    "node": ">=22.5.0"
  },
  "devDependencies": {
    "vitest": "^4.1.6"
  }
}
