{
  "name": "@ncukondo/reference-manager",
  "version": "0.36.1",
  "description": "A local reference management tool using CSL-JSON as the single source of truth",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "engines": {
    "node": ">=22"
  },
  "bin": {
    "ref": "./bin/cli.js",
    "reference-manager": "./bin/cli.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "bin"
  ],
  "scripts": {
    "dev": "vite",
    "build": "vite build && tsc --emitDeclarationOnly",
    "preview": "vite preview",
    "test": "vitest --project unit",
    "test:unit": "vitest --project unit",
    "test:e2e": "vitest run --project e2e",
    "test:remote": "vitest --project remote",
    "test:all": "vitest --project unit && vitest --project e2e && vitest --project remote",
    "test:watch": "vitest --watch --project unit",
    "test:coverage": "vitest run --coverage --project unit",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "typecheck": "tsc --noEmit",
    "check:paths": "! grep -rn --include='*.ts' --exclude='*.test.ts' --exclude='*.d.ts' --exclude='path.ts' '\\.replace(/\\\\\\\\' src/ 2>/dev/null",
    "check:no-process-exit": "! grep -rn --include='*.ts' --exclude='*.test.ts' 'process\\.exit(' src/cli/ 2>/dev/null | grep -v 'helpers.ts' | grep -v '// '",
    "prepublishOnly": "npm run build",
    "prepare": "husky || true"
  },
  "dependencies": {
    "@citation-js/core": "^0.7.16",
    "@citation-js/plugin-bibtex": "^0.7.21",
    "@citation-js/plugin-csl": "^0.7.16",
    "@citation-js/plugin-doi": "^0.7.21",
    "@citation-js/plugin-isbn": "^0.4.0",
    "@citation-js/plugin-ris": "^0.7.21",
    "@iarna/toml": "^2.2.5",
    "@modelcontextprotocol/sdk": "^1.25.1",
    "@mozilla/readability": "^0.6.0",
    "@ncukondo/academic-fulltext": "^0.2.6",
    "chokidar": "^5.0.0",
    "commander": "^12.1.0",
    "env-paths": "^3.0.0",
    "hono": "^4.11.1",
    "ink": "^6.6.0",
    "ink-ui": "^0.4.0",
    "js-yaml": "^4.1.1",
    "playwright-core": "^1.58.2",
    "react": "^19.2.3",
    "tabtab": "^3.0.2",
    "turndown": "^7.2.2",
    "turndown-plugin-gfm": "^1.0.2",
    "write-file-atomic": "^7.0.0",
    "yaml": "^2.8.2",
    "zod": "^4.1.13"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.0",
    "@hono/node-server": "^1.19.7",
    "@types/chokidar": "^1.7.5",
    "@types/js-yaml": "^4.0.9",
    "@types/jsdom": "^28.0.1",
    "@types/node": "^22.19.2",
    "@types/react": "^19.2.9",
    "@types/tabtab": "^3.0.4",
    "@types/turndown": "^5.0.6",
    "@types/write-file-atomic": "^4.0.3",
    "@vitest/coverage-v8": "^2.1.9",
    "husky": "^9.1.7",
    "jsdom": "^29.0.1",
    "lint-staged": "^16.2.7",
    "react-devtools-core": "^6.1.5",
    "typescript": "^5.6.0",
    "vite": "^6.0.0",
    "vite-node": "^2.1.0",
    "vitest": "^2.1.0"
  },
  "keywords": [
    "reference-manager",
    "csl-json",
    "bibliography",
    "pandoc",
    "citation"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ncukondo/reference-manager.git"
  },
  "lint-staged": {
    "*.{ts,tsx,js,jsx}": [
      "biome check --write"
    ]
  }
}
