@adkit/cli 1.12.1
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 +184 -0
- package/dist/cli.js +7472 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@adkit/cli",
|
|
3
|
+
"version": "1.12.1",
|
|
4
|
+
"description": "The Ads CLI for AI agents — manage Meta & Google ad campaigns, browse the ad library, and generate creatives from your terminal.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ads cli",
|
|
7
|
+
"ads",
|
|
8
|
+
"cli",
|
|
9
|
+
"meta ads",
|
|
10
|
+
"google ads",
|
|
11
|
+
"facebook ads",
|
|
12
|
+
"ad management",
|
|
13
|
+
"advertising",
|
|
14
|
+
"ai agents",
|
|
15
|
+
"ad library",
|
|
16
|
+
"mcp"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/adkit/adkit-monorepo.git",
|
|
24
|
+
"directory": "packages/cli"
|
|
25
|
+
},
|
|
26
|
+
"type": "module",
|
|
27
|
+
"bin": {
|
|
28
|
+
"adkit": "dist/cli.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "esbuild src/cli.ts --bundle --format=esm --platform=node --target=node18 --outfile=dist/cli.js --banner:js='#!/usr/bin/env node'",
|
|
35
|
+
"release": "cd ../shared && npm run build && cd ../cli && npm version patch && npm run build && npm publish --access public"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@adkit/shared": "*",
|
|
39
|
+
"@types/node": "^20.10.0",
|
|
40
|
+
"esbuild": "^0.25.12",
|
|
41
|
+
"typescript": "^5.3.0"
|
|
42
|
+
}
|
|
43
|
+
}
|