-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 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
{
"name": "google-auth-mcp",
"version": "1.0.5",
"description": "Simple Google Auth for MCP server (and maybe something else)",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun run tsup",
"clean": "rimraf dist",
"prepublishOnly": "bun run clean && bun run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"version:check": "echo v$(node -p \"require('./package.json').version\")",
"release:local": "npm run build && npm publish"
},
"keywords": [
"google",
"auth",
"mcp",
"model-context-protocol"
],
"author": "dogfrogfog",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dogfrogfog/google-auth-mcp.git"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"google-auth-library": "10.0.0",
"@google-cloud/local-auth": "3.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"rimraf": "6.0.1",
"tsup": "8.5.0"
},
"peerDependencies": {
"typescript": "5.9.2"
}
}