blob: f173684df5961df4f7741efb5aa8c085c4c222bd [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": {
"./protocol": "./dist/protocol/index.js",
"./client": "./dist/client/index.js",
"./server": "./dist/server/index.js"
},
"scripts": {
"clean": "node ../../scripts/clean-paths.mjs dist tsconfig.tsbuildinfo",
"build": "tsc -p tsconfig.json",
"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"
},
"devDependencies": {
"electron": "^43.1.1"
}
}