-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.25 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
{
"name": "@nalyk/gsccli",
"version": "1.2.1",
"description": "Full-featured Google Search Console + Indexing API CLI — auto-paginated Search Analytics, period comparison, batch URL inspection, client-side sort, query cache, OAuth/SA auth, MCP server.",
"type": "module",
"main": "dist/index.js",
"bin": {
"gsccli": "dist/index.js"
},
"files": [
"dist",
"agents",
"README.md",
"CHANGELOG.md",
"SECURITY.md",
"help.md",
"LICENSE"
],
"keywords": [
"google-search-console",
"gsc",
"search-console",
"cli",
"seo",
"search-analytics",
"url-inspection",
"sitemaps",
"indexing-api",
"mcp",
"model-context-protocol"
],
"license": "MIT",
"author": "Ion (Nalyk) Calmîș <dev.ungheni@gmail.com>",
"homepage": "https://opensource.yoda.digital/en/projects/gsccli/",
"repository": {
"type": "git",
"url": "git+https://github.com/nalyk/gsccli.git"
},
"bugs": {
"url": "https://github.com/nalyk/gsccli/issues"
},
"funding": "https://github.com/sponsors/nalyk",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check src/ test/",
"lint:fix": "biome check --write src/ test/",
"format": "biome format --write src/ test/",
"verify": "pnpm lint && pnpm type-check && pnpm test && pnpm build",
"prepublishOnly": "pnpm verify",
"publint": "pnpm dlx publint"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"google-auth-library": "^9.14.0",
"googleapis": "^144.0.0",
"ora": "^9.4.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@types/node": "^22.19.17",
"@vitest/coverage-v8": "^4.1.5",
"tsx": "^4.19.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.29.3"
}