{
  "name": "lit-search",
  "version": "1.6.0",
  "description": "Academic literature search CLI and MCP server for Semantic Scholar, OpenAlex, arXiv, CrossRef, CORE, Europe PMC, DBLP, and DOAJ. Outputs reproducible metadata JSON, literature pool JSON, and BibTeX. MCP tools: search_literature, get_paper, resolve_citations, enrich_metadata, merge_pools.",
  "keywords": [
    "literature",
    "search",
    "academic",
    "papers",
    "research",
    "semantic-scholar",
    "openalex",
    "arxiv",
    "crossref",
    "europe-pmc",
    "dblp",
    "doaj",
    "pubmed",
    "cli"
  ],
  "author": "leungBH <346883935@qq.com>",
  "license": "MIT",
  "type": "module",
  "main": "lib/index.js",
  "bin": {
    "lit-search": "bin/lit-search.js",
    "lit-search-mcp": "bin/lit-search-mcp.js"
  },
  "files": [
    "bin/",
    "lib/",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "test": "node tests/run.js",
    "test:integration": "node test.js",
    "diagnose": "node diagnose.js",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "coverage": "c8 --reporter=text --reporter=html --reporter=json-summary npm test",
    "coverage:check": "c8 --reporter=text --check-coverage --lines=50 --branches=70 --functions=50 --statements=50 npm test",
    "prepare": "husky"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/leungBH/lit-search.git"
  },
  "homepage": "https://github.com/leungBH/lit-search",
  "bugs": {
    "url": "https://github.com/leungBH/lit-search/issues"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "chalk": "^5.3.0",
    "commander": "^12.0.0",
    "conf": "^12.0.0",
    "inquirer": "^9.0.0"
  },
  "os": [
    "darwin",
    "linux",
    "win32"
  ],
  "devDependencies": {
    "c8": "^11.0.0",
    "eslint": "^9.39.4",
    "globals": "^17.7.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.8",
    "nock": "^14.0.15",
    "prettier": "^3.8.4"
  },
  "lint-staged": {
    "*.{js,mjs,cjs}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{json,md,yml,yaml}": [
      "prettier --write"
    ]
  },
  "c8": {
    "include": [
      "lib/**/*.js",
      "bin/**/*.js"
    ],
    "exclude": [
      "tests/**",
      "**/*.test.js",
      "**/coverage/**"
    ],
    "reports-dir": "coverage",
    "clean": true,
    "skip-full": false
  }
}
