package.json•2.45 kB
{
"name": "mcp-gsheets",
"version": "1.5.0",
"description": "Model Context Protocol (MCP) server for Google Sheets API integration",
"author": "freema",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-gsheets": "./dist/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"setup": "node scripts/setup-mcp-config.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check": "npm run typecheck && npm run lint && npm run format:check",
"check:all": "npm run check && npm run test:run && npm run build",
"prepublishOnly": "npm run clean && npm run build",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"inspector:dev": "NODE_ENV=development npx @modelcontextprotocol/inspector npx tsx src/index.ts",
"test:sheets": "node scripts/test-sheets-tools.js",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:ui": "vitest --ui"
},
"keywords": [
"mcp",
"model-context-protocol",
"google-sheets",
"spreadsheet",
"api",
"claude",
"ai"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"googleapis": "^140.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^3.1.4",
"@vitest/ui": "^3.1.4",
"dotenv": "^17.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"prettier": "^3.5.3",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^3.1.4"
},
"files": [
"dist",
"README.md",
"LICENSE",
"scripts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/freema/mcp-gsheets.git"
},
"bugs": {
"url": "https://github.com/freema/mcp-gsheets/issues"
},
"homepage": "https://github.com/freema/mcp-gsheets#readme",
"publishConfig": {
"access": "public"
}
}