blob: d39b5d4ff81c6bd748ba35365ac4e1bc707ecccb [file]
{
"name": "@maka/runtime-host",
"version": "0.1.0",
"license": "Apache-2.0",
"description": "Single-owner Runtime Host lifecycle, protocol, and client bootstrap.",
"type": "module",
"private": true,
"exports": {
"./adapter": "./dist/adapter/index.js",
"./protocol": "./dist/protocol/index.js",
"./client": "./dist/client/index.js",
"./operator": "./dist/operator/index.js",
"./execution-candidate-main": "./dist/execution-candidate-main.js",
"./server": "./dist/server/index.js",
"./test-only/execution-candidate-e2e-main": "./dist/test-only/execution-candidate-e2e-main.js"
},
"scripts": {
"clean": "node ../../scripts/clean-paths.mjs dist tsconfig.tsbuildinfo",
"build": "tsc -p tsconfig.json",
"benchmark:transcript": "node scripts/transcript-data-plane-benchmark.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run clean && npm run build && npm run test:dist",
"test:dist": "node --test \"dist/**/*.test.js\""
},
"dependencies": {
"@maka/core": "0.1.0",
"@maka/runtime": "0.1.0",
"@maka/storage": "0.1.0",
"ws": "^8.21.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/ws": "^8.18.1",
"electron": "^43.2.0"
}
}