26 lines
679 B
JSON
26 lines
679 B
JSON
{
|
|
"name": "bizmatch-qc-desktop",
|
|
"version": "0.1.3",
|
|
"exports": "./main.ts",
|
|
"imports": {
|
|
"@std/assert": "jsr:@std/assert@^1",
|
|
"@std/path": "jsr:@std/path@^1"
|
|
},
|
|
"tasks": {
|
|
"dev": "deno desktop --hmr --backend cef --allow-read --allow-write --allow-env main.ts",
|
|
"start": "deno desktop --backend cef --allow-read --allow-write --allow-env main.ts",
|
|
"test": "deno test --allow-read --allow-write --allow-env tests/"
|
|
},
|
|
"desktop": {
|
|
"app": {
|
|
"name": "BizMatch QC",
|
|
"identifier": "net.bizmatch.qc"
|
|
},
|
|
"backend": "cef",
|
|
"output": {
|
|
"windows": "./dist/BizMatch-QC",
|
|
"linux": "./dist/bizmatch-qc"
|
|
}
|
|
}
|
|
}
|