{ "name": "@zvec/zvec-grep", "version": "0.2.1", "description": "Agent-friendly hybrid workspace search across code and non-code content.", "type": "module", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/zvec-ai/zvec-grep.git" }, "bugs": { "url": "https://github.com/zvec-ai/zvec-grep/issues" }, "homepage": "https://github.com/zvec-ai/zvec-grep#readme", "publishConfig": { "access": "public" }, "engines": { "node": ">=22" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "bin": { "zg": "dist/cli/index.js" }, "files": [ "README.md", "README_CN.md", "LICENSE", "docs", "dist" ], "scripts": { "build": "tsc -p tsconfig.json", "check": "npm run lint && npm run format:check && npm run typecheck && npm run test:coverage && npm run test:package", "format:check": "prettier --check .", "lint": "eslint .", "postbuild": "node --input-type=module --eval \"import { chmod } from 'node:fs/promises'; await chmod('dist/cli/index.js', 0o755);\"", "prepack": "npm run build", "test:coverage": "npm run build && c8 --all --include=dist/**/*.js --check-coverage --lines=80 --statements=80 --functions=80 --branches=80 npm run test:all", "test:all": "npm run test:run:root && npm run test:run:unit && npm run test:run:integration && npm run test:run:e2e", "test:e2e": "npm run build && npm run test:run:e2e", "test:integration": "npm run build && npm run test:run:root && npm run test:run:integration", "test:package": "npm run build && node --test --test-concurrency=1 test/package/*.test.mjs", "test:smoke:local-model": "node --test --test-concurrency=1 test/smoke/local-model-package.test.mjs", "test:run:e2e": "node --test --test-concurrency=1 test/e2e/*.test.mjs", "test:run:integration": "node --test --test-concurrency=1 test/integration/*.test.mjs", "test:run:root": "node --test --test-concurrency=1 test/*.test.mjs", "test:run:unit": "node --test --test-concurrency=1 test/unit/*.test.mjs test/unit/extraction/*.test.mjs test/unit/models/*.test.mjs", "test:unit": "npm run build && npm run test:run:unit", "typecheck": "tsc -p tsconfig.json --noEmit", "test": "npm run build && npm run test:all" }, "devDependencies": { "@eslint/js": "^10.0.1", "@modelcontextprotocol/conformance": "0.1.16", "@types/node": "^22.20.1", "c8": "^11.0.0", "eslint": "^10.7.0", "globals": "^17.7.0", "prettier": "^3.9.5", "typescript": "^5.9.3", "typescript-eslint": "^8.64.0" }, "dependencies": { "@huggingface/tokenizers": "^0.1.3", "@huggingface/transformers": "^3.8.1", "@modelcontextprotocol/client": "2.0.0", "@modelcontextprotocol/core": "2.0.0", "@modelcontextprotocol/node": "2.0.0", "@modelcontextprotocol/server": "2.0.0", "@vscode/ripgrep": "^1.18.0", "@zvec/zvec": "^0.7.0", "jsonc-parser": "^3.3.1", "tree-sitter-wasms": "^0.1.13", "web-tree-sitter": "^0.20.8", "zod": "4.2.0" }, "optionalDependencies": { "node-llama-cpp": "3.18.1" } }