silverbullet/deno.json

15 lines
598 B
JSON

{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"]
},
"importMap": "import_map.json",
"tasks": {
"test": "deno test -A --unstable",
"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",
"bundle": "deno bundle --importmap import_map.json server/server.ts dist/silverbullet.js"
}
}