@uniforge/python-bridge 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/index.d.cts +15 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +36 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +47 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @uniforge/python-bridge
|
|
3
|
+
*
|
|
4
|
+
* Node.js to Python communication bridge for ML/AI workloads.
|
|
5
|
+
*/
|
|
6
|
+
declare const VERSION = "0.0.0";
|
|
7
|
+
/**
|
|
8
|
+
* Python bridge placeholder.
|
|
9
|
+
* Full implementation will include IPC, message passing, and service communication.
|
|
10
|
+
*/
|
|
11
|
+
declare const pythonBridge: {
|
|
12
|
+
version: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { VERSION, pythonBridge };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @uniforge/python-bridge
|
|
3
|
+
*
|
|
4
|
+
* Node.js to Python communication bridge for ML/AI workloads.
|
|
5
|
+
*/
|
|
6
|
+
declare const VERSION = "0.0.0";
|
|
7
|
+
/**
|
|
8
|
+
* Python bridge placeholder.
|
|
9
|
+
* Full implementation will include IPC, message passing, and service communication.
|
|
10
|
+
*/
|
|
11
|
+
declare const pythonBridge: {
|
|
12
|
+
version: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { VERSION, pythonBridge };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
|
+
VERSION: () => VERSION,
|
|
24
|
+
pythonBridge: () => pythonBridge
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(index_exports);
|
|
27
|
+
var VERSION = "0.0.0";
|
|
28
|
+
var pythonBridge = {
|
|
29
|
+
version: VERSION
|
|
30
|
+
};
|
|
31
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
32
|
+
0 && (module.exports = {
|
|
33
|
+
VERSION,
|
|
34
|
+
pythonBridge
|
|
35
|
+
});
|
|
36
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * @uniforge/python-bridge\n *\n * Node.js to Python communication bridge for ML/AI workloads.\n */\n\nexport const VERSION = '0.0.0';\n\n/**\n * Python bridge placeholder.\n * Full implementation will include IPC, message passing, and service communication.\n */\nexport const pythonBridge = {\n version: VERSION,\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMO,IAAM,UAAU;AAMhB,IAAM,eAAe;AAAA,EAC1B,SAAS;AACX;","names":[]}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * @uniforge/python-bridge\n *\n * Node.js to Python communication bridge for ML/AI workloads.\n */\n\nexport const VERSION = '0.0.0';\n\n/**\n * Python bridge placeholder.\n * Full implementation will include IPC, message passing, and service communication.\n */\nexport const pythonBridge = {\n version: VERSION,\n};\n"],"mappings":";AAMO,IAAM,UAAU;AAMhB,IAAM,eAAe;AAAA,EAC1B,SAAS;AACX;","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uniforge/python-bridge",
|
|
3
|
+
"version": "0.1.0-alpha.2",
|
|
4
|
+
"description": "Node.js to Python communication bridge for UniForge",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@uniforge/core": "0.1.0-alpha.2"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"tsup": "^8.3.0",
|
|
23
|
+
"vitest": "^2.1.0"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"uniforge",
|
|
27
|
+
"python",
|
|
28
|
+
"bridge",
|
|
29
|
+
"ipc"
|
|
30
|
+
],
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/uniprocessing/uniforge.git",
|
|
38
|
+
"directory": "packages/python-bridge"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsup",
|
|
42
|
+
"dev": "tsup --watch",
|
|
43
|
+
"test": "vitest",
|
|
44
|
+
"lint": "eslint src/",
|
|
45
|
+
"typecheck": "tsc --noEmit"
|
|
46
|
+
}
|
|
47
|
+
}
|