@gscdump/cli 0.39.0 → 0.40.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -200,7 +200,6 @@ gscdump auth login --no-browser
200
200
  - [`gscdump`](../gscdump) — Core library: GSC API client + query builder + analytics pipeline.
201
201
  - [`@gscdump/engine`](../engine) — Storage engine the CLI syncs into.
202
202
  - [`@gscdump/analysis`](../analysis) — SEO analyzers (row-based + DuckDB-native).
203
- - [`@gscdump/nuxt`](../nuxt) — Nuxt layer for embedding analytics dashboards.
204
203
 
205
204
  ## License
206
205
 
@@ -4,7 +4,7 @@ import fs from "node:fs/promises";
4
4
  import os from "node:os";
5
5
  import { Buffer } from "node:buffer";
6
6
  import { SearchTypes } from "gscdump/query";
7
- var version = "0.39.0";
7
+ var version = "0.40.2";
8
8
  const ALL_SEARCH_TYPES = Object.values(SearchTypes);
9
9
  const VERSION = version;
10
10
  function noSubcommandSelected(parent, subNames) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/cli",
3
3
  "type": "module",
4
- "version": "0.39.0",
4
+ "version": "0.40.2",
5
5
  "description": "CLI for Google Search Console - dump, query, and run MCP server",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -28,6 +28,7 @@
28
28
  "search-analytics",
29
29
  "data-export"
30
30
  ],
31
+ "sideEffects": false,
31
32
  "exports": {
32
33
  ".": {
33
34
  "types": "./dist/cli.d.mts",
@@ -42,6 +43,9 @@
42
43
  "bin",
43
44
  "dist"
44
45
  ],
46
+ "engines": {
47
+ "node": ">=18"
48
+ },
45
49
  "dependencies": {
46
50
  "@clack/prompts": "^1.7.0",
47
51
  "@duckdb/node-api": "1.5.1-r.2",
@@ -52,10 +56,10 @@
52
56
  "ofetch": "^1.5.1",
53
57
  "open": "^11.0.0",
54
58
  "zod": "^4.4.3",
55
- "@gscdump/analysis": "0.39.0",
56
- "@gscdump/engine": "0.39.0",
57
- "@gscdump/engine-gsc-api": "0.39.0",
58
- "gscdump": "0.39.0"
59
+ "@gscdump/analysis": "0.40.2",
60
+ "@gscdump/engine": "0.40.2",
61
+ "gscdump": "0.40.2",
62
+ "@gscdump/engine-gsc-api": "0.40.2"
59
63
  },
60
64
  "devDependencies": {
61
65
  "vitest": "^4.1.10"