@ai-agent-tools/picgen 0.1.0-alpha.1 → 0.1.0-alpha.2
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/dist/cli.js +1 -1
- package/package.json +5 -3
package/dist/cli.js
CHANGED
|
@@ -999,7 +999,7 @@ import { homedir as homedir2 } from "os";
|
|
|
999
999
|
|
|
1000
1000
|
// src/version.ts
|
|
1001
1001
|
var PACKAGE_NAME = "@ai-agent-tools/picgen";
|
|
1002
|
-
var VERSION = "0.1.0-alpha.
|
|
1002
|
+
var VERSION = "0.1.0-alpha.2";
|
|
1003
1003
|
|
|
1004
1004
|
// src/commands/update.ts
|
|
1005
1005
|
var UPDATE_CACHE_TTL_MS = 24 * 60 * 60 * 1e3;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-agent-tools/picgen",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.2",
|
|
4
4
|
"description": "A lightweight image generation connector for AI agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -18,11 +18,13 @@
|
|
|
18
18
|
"README.md"
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
|
-
"build": "tsup",
|
|
21
|
+
"build": "npm run sync-version && tsup",
|
|
22
22
|
"dev": "tsx src/cli.ts",
|
|
23
23
|
"typecheck": "tsc --noEmit",
|
|
24
24
|
"lint": "eslint .",
|
|
25
|
-
"test": "vitest run"
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"sync-version": "node scripts/sync-version.mjs",
|
|
27
|
+
"version": "npm run sync-version && git add src/version.ts package.json package-lock.json"
|
|
26
28
|
},
|
|
27
29
|
"keywords": [
|
|
28
30
|
"agent",
|