@elaraai/e3-api-server 1.0.4 → 1.0.5
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/README.md +3 -2
- package/bin/e3-api-server.mjs +10 -0
- package/dist/src/cli.js +0 -0
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -258,8 +258,9 @@ BSL 1.1. See [LICENSE.md](./LICENSE.md).
|
|
|
258
258
|
- [@elaraai/east-node-io](https://www.npmjs.com/package/@elaraai/east-node-io): SQLite, PostgreSQL, MySQL, MongoDB, Redis, S3, FTP, SFTP, XLSX, XML, compression
|
|
259
259
|
- [@elaraai/east-node-cli](https://www.npmjs.com/package/@elaraai/east-node-cli): CLI for running East IR programs in Node.js
|
|
260
260
|
|
|
261
|
-
- **[East C](https://github.com/elaraai/east-workspace/tree/main/libs/east-c)**: C11 native runtime for executing East IR.
|
|
262
|
-
-
|
|
261
|
+
- **[East C](https://github.com/elaraai/east-workspace/tree/main/libs/east-c)**: C11 native runtime for executing East IR. Distributed via npm (launcher + per-platform optional dependencies) and as tarballs on each GitHub Release.
|
|
262
|
+
- [@elaraai/east-c-cli](https://www.npmjs.com/package/@elaraai/east-c-cli): npm launcher — installs the matching native binary as an optional dependency
|
|
263
|
+
- `east-c`: Core runtime — type system, IR interpreter, builtins, serialization (Beast2, JSON, CSV, East text)
|
|
263
264
|
- `east-c-std`: Console, FileSystem, Fetch, Crypto, Time, Path, Random
|
|
264
265
|
- `east-c-cli`: CLI for running East IR programs natively
|
|
265
266
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) 2025 Elara AI Pty Ltd
|
|
4
|
+
* Licensed under BSL 1.1. See LICENSE for details.
|
|
5
|
+
*
|
|
6
|
+
* Static bin shim — exists in fresh checkout so pnpm install can create
|
|
7
|
+
* the bin symlink BEFORE the package is built. Dynamic-imports the
|
|
8
|
+
* built CLI entrypoint; argv flows through via process.argv.
|
|
9
|
+
*/
|
|
10
|
+
await import('../dist/src/cli.js');
|
package/dist/src/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elaraai/e3-api-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "East Execution Engine API Server - HTTP server exposing e3-core operations",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"types": "dist/src/index.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"e3-api-server": "
|
|
9
|
+
"e3-api-server": "./bin/e3-api-server.mjs"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
|
+
"bin",
|
|
30
31
|
"dist/src",
|
|
31
32
|
"!dist/src/**/*.spec.*",
|
|
32
33
|
"README.md",
|
|
@@ -48,11 +49,11 @@
|
|
|
48
49
|
"@hono/node-server": "^1.13.0",
|
|
49
50
|
"commander": "^12.0.0",
|
|
50
51
|
"hono": "^4.6.0",
|
|
51
|
-
"@elaraai/e3-
|
|
52
|
-
"@elaraai/e3-
|
|
52
|
+
"@elaraai/e3-types": "1.0.5",
|
|
53
|
+
"@elaraai/e3-core": "1.0.5"
|
|
53
54
|
},
|
|
54
55
|
"peerDependencies": {
|
|
55
|
-
"@elaraai/east": "1.0.
|
|
56
|
+
"@elaraai/east": "1.0.5"
|
|
56
57
|
},
|
|
57
58
|
"devDependencies": {
|
|
58
59
|
"@types/node": "^22.0.0",
|