image-skill 0.1.0 → 0.1.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.
@@ -7,7 +7,7 @@ import { Readable } from "node:stream";
7
7
  import { pipeline } from "node:stream/promises";
8
8
  import os from "node:os";
9
9
 
10
- const VERSION = "0.1.0";
10
+ const VERSION = "0.1.1";
11
11
  const DEFAULT_API_BASE_URL = "https://api.image-skill.com";
12
12
  const DEFAULT_CONFIG_PATH = join(
13
13
  process.env.XDG_CONFIG_HOME ?? join(os.homedir(), ".config"),
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "image-skill",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Thin hosted CLI for Image Skill, a creative runtime for agents.",
5
5
  "type": "module",
6
6
  "private": false,
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/danielgwilson/image-skill-cli.git"
10
+ },
11
+ "homepage": "https://image-skill.com",
7
12
  "bin": {
8
13
  "image-skill": "bin/image-skill.mjs"
9
14
  },