UNPKG

bigparse

Version:

MCP server that gives Claude instant, intelligent access to your codebase using Language Server Protocol

70 lines (69 loc) 1.66 kB
{ "name": "bigparse", "version": "1.0.4", "description": "MCP server that gives Claude instant, intelligent access to your codebase using Language Server Protocol", "main": "dist/index.js", "bin": { "bigparse": "dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsx watch src/index.ts", "start": "node dist/index.js", "test": "jest", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "glob": "^10.3.10", "vscode-jsonrpc": "^8.2.0", "vscode-languageserver-protocol": "^3.17.5", "vscode-languageserver-textdocument": "^1.0.11", "vscode-uri": "^3.0.8" }, "devDependencies": { "@types/node": "^20.11.0", "@typescript-eslint/eslint-plugin": "^6.19.0", "@typescript-eslint/parser": "^6.19.0", "@types/jest": "^29.5.11", "eslint": "^8.56.0", "jest": "^29.7.0", "ts-jest": "^29.1.1", "tsx": "^4.7.0", "typescript": "^5.3.3" }, "keywords": [ "mcp", "lsp", "vscode", "language-server", "code-indexing", "claude", "anthropic", "model-context-protocol" ], "author": "Lancio AI", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/agentbrazley/BigParse.git" }, "bugs": { "url": "https://github.com/agentbrazley/BigParse/issues" }, "homepage": "https://github.com/agentbrazley/BigParse#readme", "engines": { "node": ">=16.0.0" }, "files": [ "dist/**/*", "src/**/*", "config/**/*", "scripts/**/*", "README.md", "LICENSE", "CHANGELOG.md", "package.json" ] }