Arboricx bundle format 1.1

We don't need SHA verification or Merkle dags in our transport bundle. Content
stores can handle both bundle and term verification and hashing.
This commit is contained in:
2026-05-11 19:53:37 -05:00
parent e0b1e95729
commit 31bf7094f4
45 changed files with 4032 additions and 7127 deletions

View File

@@ -1,9 +1,9 @@
{
"name": "arboricx-runtime",
"version": "0.1.0",
"description": "Arboricx portable bundle runtime — JavaScript reference implementation",
"description": "Arboricx portable bundle runtime — JavaScript host via libarboricx FFI",
"type": "module",
"main": "src/bundle.js",
"main": "src/lib.js",
"bin": {
"arboricx-run": "src/cli.js"
},
@@ -12,6 +12,9 @@
"inspect": "node src/cli.js inspect",
"run": "node src/cli.js run"
},
"keywords": ["arboricx", "tree-calculus", "trie", "runtime"],
"dependencies": {
"koffi": "^2.16.0"
},
"keywords": ["arboricx", "tree-calculus", "trie", "runtime", "ffi"],
"license": "MIT"
}