-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "@funnelenvy/ga4-cli",
"version": "0.1.0",
"description": "Command-line interface for Google Analytics 4 — run reports, manage properties, and query realtime data",
"type": "module",
"bin": {
"ga4": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"files": ["dist"],
"keywords": ["cli", "marketing", "ga4", "google-analytics", "analytics"],
"author": "FunnelEnvy",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"cli-table3": "^0.6.4",
"commander": "^12.1.0",
"csv-stringify": "^6.5.0",
"open": "^10.1.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"eslint": "^10.0.2",
"nock": "^14.0.0",
"tsup": "^8.5.1",
"typescript": "^5.4.0",
"vitest": "^1.6.1"
},
"overrides": {
"rollup": ">=4.59.0",
"esbuild": ">=0.25.0"
},
"pnpm": {
"overrides": {
"rollup": ">=4.59.0",
"esbuild": ">=0.25.0"
}
},
"engines": {
"node": ">=20.0.0"
}
}