silverbullet/deno.json

15 lines
615 B
JSON
Raw Normal View History

2022-10-03 23:36:21 +08:00
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"]
},
"importMap": "import_map.json",
"tasks": {
2022-10-06 17:31:49 +08:00
"test": "deno test -A --unstable",
2022-10-08 22:59:42 +08:00
"install": "deno install -f -A --unstable plugos/bin/plugos-bundle.ts && deno install -f -n silverbullet -A --unstable server/server.ts",
"watch-web": "deno run -A build.ts",
"watch-server": "deno run -A --unstable --watch server/server.ts",
"plugs": "./build_plugs.sh",
2022-10-08 22:29:43 +08:00
"compile": "deno compile --output silverbullet --importmap import_map.json -A --unstable server/server.ts"
2022-10-03 23:36:21 +08:00
}
}