package.jsonβ’2.12 kB
{
"name": "local-explorer-mcp",
"version": "1.0.2",
"description": "MCP server for local file system research using Linux commands",
"type": "module",
"main": "dist/index.js",
"bin": "dist/index.js",
"files": [
"dist/index.js",
"manifest.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "yarn lint && yarn clean && rollup -c",
"build:dev": "yarn clean && rollup -c",
"build:watch": "rollup -c --watch",
"clean": "rm -rf dist/",
"debug": "npx @modelcontextprotocol/inspector node dist/index.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\""
},
"keywords": [
"mcp",
"model-context-protocol",
"local-explorer",
"file-system",
"grep",
"find",
"ls",
"cli",
"ai-assistant",
"codebase-explorer"
],
"author": "Octocode Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"node-cache": "^5.1.2",
"octocode-utils": "^5.0.0",
"zod": "^3.25.26"
},
"devDependencies": {
"@anthropic-ai/claude-code": "^2.0.25",
"@babel/generator": "^7.28.3",
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^8.57.0",
"javascript-obfuscator": "^4.1.1",
"prettier": "^3.5.3",
"rollup": "^4.46.2",
"rollup-plugin-obfuscator": "^1.1.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}