15 lines
708 B
JSON
15 lines
708 B
JSON
|
|
{
|
||
|
|
"name": "@ecobridge/eco-os",
|
||
|
|
"private": true,
|
||
|
|
"scripts": {
|
||
|
|
"build": "docker build --no-cache -t ecoos-builder -f isobuild/Dockerfile . && docker run --rm --privileged -v $(pwd)/isobuild/output:/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:stop": "cd isotest && ./stop.sh",
|
||
|
|
"clean": "rm -rf isobuild/output/*.iso isotest/*.qcow2 isotest/screenshots/*"
|
||
|
|
}
|
||
|
|
}
|