maeve-cli 0.11.0 → 0.12.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.
- package/README.md +765 -731
- package/dist/index.js +772 -52
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maeve-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Command-line automation for the Maeve Social public API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,26 +25,26 @@
|
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=22"
|
|
27
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
|
+
},
|
|
28
36
|
"dependencies": {
|
|
29
37
|
"commander": "^13.1.0",
|
|
30
38
|
"zod": "^4.1.12"
|
|
31
39
|
},
|
|
32
40
|
"devDependencies": {
|
|
41
|
+
"@maeve/tool-contracts": "workspace:*",
|
|
33
42
|
"@types/node": "^22.18.13",
|
|
34
43
|
"tsup": "^8.5.0",
|
|
35
44
|
"tsx": "^4.20.6",
|
|
36
|
-
"typescript": "^5.9.3"
|
|
37
|
-
"@maeve/tool-contracts": "0.1.0"
|
|
45
|
+
"typescript": "^5.9.3"
|
|
38
46
|
},
|
|
39
47
|
"publishConfig": {
|
|
40
48
|
"access": "public"
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "tsup src/index.ts --format esm --target node22 --out-dir dist --clean --dts && node scripts/ensure-bin-mode.mjs",
|
|
44
|
-
"dev": "tsx src/index.ts",
|
|
45
|
-
"test": "tsx test/run-tests.ts",
|
|
46
|
-
"test:bin": "tsx test/bin-smoke.ts",
|
|
47
|
-
"test:e2e": "tsx test/e2e-smoke.ts",
|
|
48
|
-
"typecheck": "tsc --noEmit"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
50
|
+
}
|