maeve-cli 0.9.0

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.
@@ -0,0 +1,13 @@
1
+ {
2
+ "integrationId": "00000000-0000-4000-8000-000000000001",
3
+ "internalTitle": "CLI draft post",
4
+ "captions": {
5
+ "canonical": "A scheduled post created through the EziBreezy CLI."
6
+ },
7
+ "pillarIds": ["00000000-0000-4000-8000-000000000002"],
8
+ "formatIds": ["00000000-0000-4000-8000-000000000003"],
9
+ "labelIds": ["00000000-0000-4000-8000-000000000004"],
10
+ "campaignId": "00000000-0000-4000-8000-000000000005",
11
+ "campaignPhaseId": "00000000-0000-4000-8000-000000000006",
12
+ "intent": "draft"
13
+ }
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "maeve-cli",
3
+ "version": "0.9.0",
4
+ "description": "Command-line automation for the Maeve Social public API.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "LILY DIA PTY LTD",
8
+ "homepage": "https://maevesocial.com",
9
+ "keywords": [
10
+ "maeve",
11
+ "cli",
12
+ "api",
13
+ "social-media",
14
+ "automation"
15
+ ],
16
+ "bin": {
17
+ "maeve": "./dist/index.js"
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "README.md",
22
+ "LICENSE",
23
+ "examples"
24
+ ],
25
+ "engines": {
26
+ "node": ">=22"
27
+ },
28
+ "scripts": {
29
+ "build": "tsup src/index.ts --format esm --target node22 --out-dir dist --clean --dts && node scripts/ensure-bin-mode.mjs",
30
+ "dev": "tsx src/index.ts",
31
+ "test": "tsx test/run-tests.ts",
32
+ "test:bin": "tsx test/bin-smoke.ts",
33
+ "test:e2e": "tsx test/e2e-smoke.ts",
34
+ "typecheck": "tsc --noEmit"
35
+ },
36
+ "dependencies": {
37
+ "commander": "^13.1.0",
38
+ "zod": "^4.1.12"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "^22.18.13",
42
+ "tsup": "^8.5.0",
43
+ "tsx": "^4.20.6",
44
+ "typescript": "^5.9.3"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ }
49
+ }