package.json•1.72 kB
{
"name": "@willianpinho/large-file-mcp",
"version": "1.0.0",
"description": "Production-ready MCP server for intelligent handling of large files with smart chunking, navigation, and streaming capabilities",
"main": "dist/index.js",
"type": "module",
"bin": {
"large-file-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsc --watch",
"prepare": "npm run build",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules jest --ci --coverage --maxWorkers=2",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"mcp",
"model-context-protocol",
"large-files",
"file-streaming",
"chunking",
"claude",
"ai-tools"
],
"author": "Willian Pinho",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/willianpinho/large-file-mcp.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "^5.3.0",
"vitepress": "^1.6.4"
}
}