18 lines
461 B
JSON
18 lines
461 B
JSON
{
|
|
"name": "arborix-runtime",
|
|
"version": "0.1.0",
|
|
"description": "Arborix portable bundle runtime — JavaScript reference implementation",
|
|
"type": "module",
|
|
"main": "src/bundle.js",
|
|
"bin": {
|
|
"arborix-run": "src/cli.js"
|
|
},
|
|
"scripts": {
|
|
"test": "node --test test/*.test.js",
|
|
"inspect": "node src/cli.js inspect",
|
|
"run": "node src/cli.js run"
|
|
},
|
|
"keywords": ["arborix", "tree-calculus", "trie", "runtime"],
|
|
"license": "MIT"
|
|
}
|