-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.98 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
{
"name": "@houtini/better-search-console",
"version": "1.0.6",
"mcpName": "io.github.houtini-ai/better-search-console",
"description": "MCP server that syncs Google Search Console data into SQLite for analysis",
"type": "module",
"main": "dist/index.js",
"bin": {
"better-search-console": "dist/index.js"
},
"author": "Richard Baxter <hello@houtini.com>",
"license": "Apache-2.0",
"homepage": "https://houtini.com/better-search-console/",
"repository": {
"type": "git",
"url": "https://github.com/houtini-ai/better-search-console.git"
},
"keywords": [
"mcp",
"google-search-console",
"seo",
"sqlite",
"analytics",
"model-context-protocol"
],
"scripts": {
"build:server": "tsc -p tsconfig.server.json",
"build:ui:dashboard": "cross-env INPUT=src/ui/dashboard.html vite build",
"build:ui:overview": "cross-env INPUT=src/ui/overview.html vite build --outDir dist/overview --emptyOutDir",
"build:ui:sync": "cross-env INPUT=src/ui/sync-progress.html vite build --outDir dist/sync-progress --emptyOutDir",
"build:ui": "npm run build:ui:dashboard && npm run build:ui:overview && npm run build:ui:sync",
"build": "npm run build:server && npm run build:ui",
"dev": "tsc -p tsconfig.server.json --watch",
"start": "node dist/index.js",
"test": "npm run build && echo 'Build successful - all checks passed'",
"clean": "rimraf dist"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.7.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.11.1",
"googleapis": "^173.0.0",
"chart.js": "^4.5.1",
"zod": "^3.25.1"
},
"devDependencies": {
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@fontsource-variable/schibsted-grotesk": "^5.2.8",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.11.0",
"cross-env": "^10.1.0",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vite-plugin-singlefile": "^2.3.3"
}
}