package.json•681 B
{
"name": "spreadsheet-mcp-server",
"version": "1.0.0",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"mcp",
"spreadsheet"
],
"author": "",
"license": "ISC",
"description": "MCP Server for Google Spreadsheet integration",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"dotenv": "^16.4.7",
"typescript": "^5.8.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.14.0",
"ts-node": "^10.9.2",
"vitest": "^1.4.0"
}
}