16 lines
916 B
JSON
16 lines
916 B
JSON
{
|
|
"name": "@ecobridge/eco-os",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "pnpm run daemon:bundle && cp ecoos_daemon/bundle/eco-daemon isobuild/config/includes.chroot/opt/eco/bin/ && mkdir -p .nogit/iso && docker build --no-cache -t ecoos-builder -f isobuild/Dockerfile . && docker run --rm --privileged -v $(pwd)/.nogit/iso:/output ecoos-builder",
|
|
"daemon:dev": "cd ecoos_daemon && deno run --allow-all --watch mod.ts",
|
|
"daemon:start": "cd ecoos_daemon && deno run --allow-all mod.ts",
|
|
"daemon:bundle": "cd ecoos_daemon && deno compile --allow-all --output bundle/eco-daemon mod.ts",
|
|
"test": "cd isotest && ./run-test.sh",
|
|
"test:screenshot": "cd isotest && ./screenshot.sh",
|
|
"test:screenshot:loop": "while true; do pnpm run test:screenshot; sleep 5; done",
|
|
"test:stop": "cd isotest && ./stop.sh",
|
|
"clean": "rm -rf .nogit/iso/*.iso .nogit/vm/*.qcow2 .nogit/screenshots/*"
|
|
}
|
|
}
|