We don't need SHA verification or Merkle dags in our transport bundle. Content stores can handle both bundle and term verification and hashing.
21 lines
517 B
JSON
21 lines
517 B
JSON
{
|
|
"name": "arboricx-runtime",
|
|
"version": "0.1.0",
|
|
"description": "Arboricx portable bundle runtime — JavaScript host via libarboricx FFI",
|
|
"type": "module",
|
|
"main": "src/lib.js",
|
|
"bin": {
|
|
"arboricx-run": "src/cli.js"
|
|
},
|
|
"scripts": {
|
|
"test": "node --test test/*.test.js",
|
|
"inspect": "node src/cli.js inspect",
|
|
"run": "node src/cli.js run"
|
|
},
|
|
"dependencies": {
|
|
"koffi": "^2.16.0"
|
|
},
|
|
"keywords": ["arboricx", "tree-calculus", "trie", "runtime", "ffi"],
|
|
"license": "MIT"
|
|
}
|