@elaraai/east-node-io 1.0.4 → 1.0.6
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/package.json +4 -4
package/README.md
CHANGED
|
@@ -247,8 +247,9 @@ This project is licensed under the GNU Affero General Public License v3.0 - see
|
|
|
247
247
|
- [@elaraai/east-node-io](https://www.npmjs.com/package/@elaraai/east-node-io): SQLite, PostgreSQL, MySQL, MongoDB, Redis, S3, FTP, SFTP, XLSX, XML, compression
|
|
248
248
|
- [@elaraai/east-node-cli](https://www.npmjs.com/package/@elaraai/east-node-cli): CLI for running East IR programs in Node.js
|
|
249
249
|
|
|
250
|
-
- **[East C](https://github.com/elaraai/east-workspace/tree/main/libs/east-c)**: C11 native runtime for executing East IR.
|
|
251
|
-
-
|
|
250
|
+
- **[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.
|
|
251
|
+
- [@elaraai/east-c-cli](https://www.npmjs.com/package/@elaraai/east-c-cli): npm launcher — installs the matching native binary as an optional dependency
|
|
252
|
+
- `east-c`: Core runtime — type system, IR interpreter, builtins, serialization (Beast2, JSON, CSV, East text)
|
|
252
253
|
- `east-c-std`: Console, FileSystem, Fetch, Crypto, Time, Path, Random
|
|
253
254
|
- `east-c-cli`: CLI for running East IR programs natively
|
|
254
255
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elaraai/east-node-io",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "I/O platform functions for the East language on Node.js",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"eslint": "^9.34.0",
|
|
62
62
|
"eslint-plugin-headers": "^1.3.3",
|
|
63
63
|
"typescript": "~5.9.2",
|
|
64
|
-
"@elaraai/east-node-std": "1.0.
|
|
64
|
+
"@elaraai/east-node-std": "1.0.6"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@aws-sdk/client-s3": "^3.713.0",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"xlsx": "^0.18.5"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|
|
82
|
-
"@elaraai/east": "1.0.
|
|
83
|
-
"@elaraai/east-node-std": "1.0.
|
|
82
|
+
"@elaraai/east": "1.0.6",
|
|
83
|
+
"@elaraai/east-node-std": "1.0.6"
|
|
84
84
|
},
|
|
85
85
|
"scripts": {
|
|
86
86
|
"build": "tsc",
|