@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 +9 -0
- package/lib/cjs/nodejs/index.browser.d.ts +1 -0
- package/lib/cjs/nodejs/index.browser.js +3 -0
- package/lib/cjs/nodejs/index.node.d.ts +1 -0
- package/lib/cjs/nodejs/index.node.js +4 -0
- package/lib/esm/nodejs/index.browser.d.ts +1 -0
- package/lib/esm/nodejs/index.browser.js +3 -0
- package/lib/esm/nodejs/index.node.d.ts +1 -0
- package/lib/esm/nodejs/index.node.js +4 -0
- package/package.json +5 -5
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
|
|
|
@@ -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
|
};
|
|
@@ -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.
|
|
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.
|
|
52
|
+
"@modelcontextprotocol/sdk": "^1.18.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@types/bun": "^1.2.
|
|
56
|
-
"@types/node": "^24.
|
|
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.
|
|
59
|
+
"typescript": "^5.9.2"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"lint": "tsc --noEmit",
|