@shapeshift-labs/frontier-lang 0.4.44 → 0.4.45

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.
Files changed (2) hide show
  1. package/README.md +9 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -210,6 +210,15 @@ The root package re-exports the browser-safe runtime packages:
210
210
  - `@shapeshift-labs/frontier-lang-c`: C header projection adapter.
211
211
  - `@shapeshift-labs/frontier-lang-compiler`: compiler facade for parse, check, and emit.
212
212
 
213
+ The root import also exposes kernel semantic-operation records and compiler conversion artifacts for swarm merge admission:
214
+
215
+ ```js
216
+ import { createSemanticOperationSet, createUniversalConversionArtifacts } from "@shapeshift-labs/frontier-lang";
217
+
218
+ console.log(createSemanticOperationSet({ operations: [{ operationKind: "projection" }] }).summary.operations);
219
+ console.log(createUniversalConversionArtifacts({ imports: [], targets: ["javascript"] }).summary.routes);
220
+ ```
221
+
213
222
  The Node CLI is intentionally separate:
214
223
 
215
224
  ```sh
@@ -299,4 +308,3 @@ npm run bench
299
308
  ```
300
309
 
301
310
  These are Frontier-only package measurements for @shapeshift-labs/frontier-lang. They exercise the package's own parser, checker, compiler, projection, CLI, fuzz, or semantic-kernel surface without making competitor comparison claims.
302
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shapeshift-labs/frontier-lang",
3
- "version": "0.4.44",
3
+ "version": "0.4.45",
4
4
  "description": "Umbrella package for Frontier Lang kernel, parser, checker, compiler, and projection packages.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -60,12 +60,12 @@
60
60
  "@shapeshift-labs/frontier-lang-c": "0.2.8",
61
61
  "@shapeshift-labs/frontier-lang-checker": "0.3.7",
62
62
  "@shapeshift-labs/frontier-lang-clang": "0.1.6",
63
- "@shapeshift-labs/frontier-lang-compiler": "0.2.50",
63
+ "@shapeshift-labs/frontier-lang-compiler": "0.2.52",
64
64
  "@shapeshift-labs/frontier-lang-csharp": "0.1.6",
65
65
  "@shapeshift-labs/frontier-lang-go": "0.1.6",
66
66
  "@shapeshift-labs/frontier-lang-java": "0.1.6",
67
67
  "@shapeshift-labs/frontier-lang-javascript": "0.2.8",
68
- "@shapeshift-labs/frontier-lang-kernel": "0.3.11",
68
+ "@shapeshift-labs/frontier-lang-kernel": "0.3.12",
69
69
  "@shapeshift-labs/frontier-lang-kotlin": "0.1.6",
70
70
  "@shapeshift-labs/frontier-lang-parser": "0.3.7",
71
71
  "@shapeshift-labs/frontier-lang-python": "0.2.8",