-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.32 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.32 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
{
"name": "@funnelenvy/meta-ads-cli",
"version": "0.1.0",
"description": "Command-line interface for the Meta (Facebook) Marketing API",
"type": "module",
"bin": {
"meta-ads": "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",
"meta",
"facebook",
"ads",
"meta-ads",
"marketing-api"
],
"author": "FunnelEnvy",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.4",
"commander": "^12.1.0",
"csv-stringify": "^6.5.0",
"open": "^10.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"nock": "^14.0.0",
"tsup": "^8.5.1",
"typescript": "^5.4.0",
"vitest": "^1.6.1"
},
"overrides": {
"ajv": ">=6.14.0",
"esbuild": ">=0.25.0" ,
"rollup": ">=4.59.0",
"minimatch": ">=3.1.3"
},
"engines": {
"node": ">=20.0.0"
}
}