libclaw 0.1.3 → 0.1.4

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/mod.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export declare const version = "0.1.3";
1
+ export declare const version = "0.1.4";
2
2
  export declare function main(): void;
3
3
  //# sourceMappingURL=mod.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "libclaw",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Build your own personal AI assistant",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -10,7 +10,7 @@
10
10
  "opencode",
11
11
  "skills"
12
12
  ],
13
- "license": "UNLICENSED",
13
+ "license": "MIT",
14
14
  "author": "Ankur Oberoi <aoberoi@gmail.com>",
15
15
  "type": "module",
16
16
  "engines": {
package/src/mod.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // Main entry point for libclaw
2
2
  // Add your exports here
3
3
 
4
- export const version = "0.1.3";
4
+ export const version = "0.1.4";
5
5
 
6
6
  export function main(): void {
7
7
  throw new Error("Prerelease version. See https://github.com/aoberoi/libclaw for details.");