@aigne/platform-helpers 0.6.2 → 0.6.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.3](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.6.3-beta...platform-helpers-v0.6.3) (2025-09-27)
4
+
5
+ ## [0.6.3-beta](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.6.2...platform-helpers-v0.6.3-beta) (2025-09-22)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * resolve Windows file import URI issues ([#528](https://github.com/AIGNE-io/aigne-framework/issues/528)) ([bf807c5](https://github.com/AIGNE-io/aigne-framework/commit/bf807c5a3563c4423dc82fddff7fba280ef57957))
11
+
3
12
  ## [0.6.2](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.6.1...platform-helpers-v0.6.2) (2025-08-14)
4
13
 
5
14
 
@@ -8,4 +8,5 @@ export declare const nodejs: {
8
8
  readonly path: typeof import("node:path");
9
9
  readonly os: typeof import("node:os");
10
10
  readonly crypto: typeof import("node:crypto");
11
+ readonly url: typeof import("node:url");
11
12
  };
@@ -23,4 +23,7 @@ exports.nodejs = {
23
23
  get crypto() {
24
24
  throw new Error("This code must run in a Node.js environment.");
25
25
  },
26
+ get url() {
27
+ throw new Error("This code must run in a Node.js environment.");
28
+ },
26
29
  };
@@ -8,4 +8,5 @@ export declare const nodejs: {
8
8
  readonly path: typeof import("node:path");
9
9
  readonly os: typeof import("node:os");
10
10
  readonly crypto: typeof import("node:crypto");
11
+ readonly url: typeof import("node:url");
11
12
  };
@@ -9,6 +9,7 @@ const node_fs_1 = __importDefault(require("node:fs"));
9
9
  const promises_1 = __importDefault(require("node:fs/promises"));
10
10
  const node_os_1 = __importDefault(require("node:os"));
11
11
  const node_path_1 = __importDefault(require("node:path"));
12
+ const node_url_1 = __importDefault(require("node:url"));
12
13
  const node_util_1 = require("node:util");
13
14
  exports.nodejs = {
14
15
  customInspect: node_util_1.inspect.custom,
@@ -36,4 +37,7 @@ exports.nodejs = {
36
37
  get crypto() {
37
38
  return node_crypto_1.default;
38
39
  },
40
+ get url() {
41
+ return node_url_1.default;
42
+ },
39
43
  };
@@ -8,4 +8,5 @@ export declare const nodejs: {
8
8
  readonly path: typeof import("node:path");
9
9
  readonly os: typeof import("node:os");
10
10
  readonly crypto: typeof import("node:crypto");
11
+ readonly url: typeof import("node:url");
11
12
  };
@@ -20,4 +20,7 @@ export const nodejs = {
20
20
  get crypto() {
21
21
  throw new Error("This code must run in a Node.js environment.");
22
22
  },
23
+ get url() {
24
+ throw new Error("This code must run in a Node.js environment.");
25
+ },
23
26
  };
@@ -8,4 +8,5 @@ export declare const nodejs: {
8
8
  readonly path: typeof import("node:path");
9
9
  readonly os: typeof import("node:os");
10
10
  readonly crypto: typeof import("node:crypto");
11
+ readonly url: typeof import("node:url");
11
12
  };
@@ -3,6 +3,7 @@ import fsSync from "node:fs";
3
3
  import fs from "node:fs/promises";
4
4
  import os from "node:os";
5
5
  import path from "node:path";
6
+ import url from "node:url";
6
7
  import { inspect } from "node:util";
7
8
  export const nodejs = {
8
9
  customInspect: inspect.custom,
@@ -30,4 +31,7 @@ export const nodejs = {
30
31
  get crypto() {
31
32
  return crypto;
32
33
  },
34
+ get url() {
35
+ return url;
36
+ },
33
37
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/platform-helpers",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "AIGNE core library for building AI-powered applications",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -49,14 +49,14 @@
49
49
  }
50
50
  },
51
51
  "dependencies": {
52
- "@modelcontextprotocol/sdk": "^1.15.0"
52
+ "@modelcontextprotocol/sdk": "^1.18.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@types/bun": "^1.2.18",
56
- "@types/node": "^24.0.12",
55
+ "@types/bun": "^1.2.22",
56
+ "@types/node": "^24.5.1",
57
57
  "npm-run-all": "^4.1.5",
58
58
  "rimraf": "^6.0.1",
59
- "typescript": "^5.8.3"
59
+ "typescript": "^5.9.2"
60
60
  },
61
61
  "scripts": {
62
62
  "lint": "tsc --noEmit",