package.json•1.18 kB
{
"name": "google-drive-mcp-server",
"version": "1.0.0",
"description": "MCP server for Google Drive integration with AI agents",
"main": "dist/index.js",
"type": "module",
"bin": {
"google-drive-mcp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"google-drive",
"ai",
"agent",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"googleapis": "^144.0.0",
"inquirer": "^10.2.2",
"mammoth": "^1.8.0",
"node-cache": "^5.1.2",
"ora": "^8.2.0",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^22.0.0",
"@types/pdf-parse": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
}
}