forked from stape-io/google-tag-manager-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "google-tag-manager-mcp-server",
"version": "3.0.5",
"description": "MCP server for Google Tag Manager",
"license": "Apache-2.0",
"author": "stape-io",
"homepage": "https://github.com/stape-io/google-tag-manager-mcp-server",
"main": "dist/index.js",
"bin": {
"google-tag-manager-mcp-server": "./dist/index.js"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"gtm",
"stape"
],
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"postinstall": "npm run build",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"prepublish": "npm run build",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"cf-typegen": "wrangler types --include-env=false"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.0.10",
"@modelcontextprotocol/sdk": "^1.18.1",
"agents": "^0.2.0",
"dotenv": "^16.3.1",
"google-auth-library": "^9.4.1",
"googleapis": "^128.0.0",
"hono": "^4.9.8",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"wrangler": "^4.16.0"
}
}