@liendev/lien
Version:
Local semantic code search for AI assistants via MCP
91 lines (90 loc) • 2.11 kB
JSON
{
"name": "@liendev/lien",
"version": "0.14.0",
"description": "Local semantic code search for AI assistants via MCP",
"type": "module",
"bin": {
"lien": "./dist/index.js"
},
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CURSOR_RULES_TEMPLATE.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/getlien/lien.git",
"directory": "packages/cli"
},
"homepage": "https://lien.dev",
"bugs": {
"url": "https://github.com/getlien/lien/issues"
},
"scripts": {
"build": "tsup && chmod +x dist/index.js",
"dev": "tsup --watch",
"prepublishOnly": "npm run build && cp ../../README.md .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"docs": "typedoc"
},
"keywords": [
"mcp",
"semantic-search",
"codebase",
"ai",
"cursor",
"code-intelligence",
"vector-search",
"embeddings",
"local-first",
"privacy"
],
"author": "Alf Henderson",
"license": "AGPL-3.0-only",
"dependencies": {
"@modelcontextprotocol/sdk": "0.5.0",
"@types/figlet": "1.7.0",
"@xenova/transformers": "2.17.0",
"chalk": "5.3.0",
"chokidar": "3.6.0",
"commander": "12.0.0",
"figlet": "1.9.3",
"glob": "10.3.0",
"ignore": "5.3.0",
"inquirer": "9.2.0",
"ora": "8.0.0",
"p-limit": "5.0.0",
"tree-sitter": "^0.25.0",
"tree-sitter-javascript": "0.23.1",
"tree-sitter-php": "^0.24.2",
"tree-sitter-typescript": "0.23.2",
"vectordb": "0.21.2",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.8",
"@vitest/ui": "^4.0.8",
"c8": "^10.1.3",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^4.0.8"
},
"engines": {
"node": ">=22.21.0"
}
}