-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mcp-gsheets",
"version": "1.9.0",
"mcpName": "io.github.freema/mcp-gsheets",
"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",
"lint:fix": "eslint src --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": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"googleapis": "^171.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^24.1.0",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "^4.0.0",
"dotenv": "^17.4.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^15.0.0",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.0"
},
"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"
}
}