22 lines
532 B
JSON
22 lines
532 B
JSON
{
|
|
"name": "bizmatch-qc-desktop",
|
|
"version": "0.1.3",
|
|
"exports": "./main.ts",
|
|
"tasks": {
|
|
"dev": "deno desktop --hmr --backend cef --allow-read --allow-write main.ts",
|
|
"start": "deno desktop --backend cef --allow-read --allow-write main.ts",
|
|
"test": "deno test --allow-read tests/"
|
|
},
|
|
"desktop": {
|
|
"app": {
|
|
"name": "BizMatch QC",
|
|
"identifier": "net.bizmatch.qc"
|
|
},
|
|
"backend": "cef",
|
|
"output": {
|
|
"windows": "./dist/BizMatch-QC",
|
|
"linux": "./dist/bizmatch-qc"
|
|
}
|
|
}
|
|
}
|