-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 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
{
"name": "@appsyogi/adsense-mcp-server",
"version": "0.1.0",
"description": "Google AdSense MCP Server - Monitor earnings, reports, and account health via Claude/AI",
"type": "module",
"main": "./dist/index.js",
"bin": {
"adsense-mcp": "./dist/cli/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"google-adsense",
"adsense",
"earnings",
"publisher",
"model-context-protocol",
"claude",
"cursor",
"ai",
"monetization"
],
"author": "SuperZero11",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AppsYogi-com/adsense-mcp-server.git"
},
"bugs": {
"url": "https://github.com/AppsYogi-com/adsense-mcp-server/issues"
},
"homepage": "https://github.com/AppsYogi-com/adsense-mcp-server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.0",
"better-sqlite3": "^11.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"env-paths": "^3.0.0",
"googleapis": "^140.0.0",
"keytar": "^7.9.0",
"open": "^10.0.0",
"ora": "^8.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
}
}