Files
OD-Downloader/package.json
Keith Solomon 19bcefbec8
Some checks failed
Build and Release / build-release (push) Failing after 6m35s
feature: Release first public version #release
2026-01-04 20:14:40 -06:00

37 lines
727 B
JSON

{
"name": "od-dl",
"version": "0.1.0",
"description": "GUI downloader for open directory listings",
"main": "src/main.js",
"author": "",
"license": "MIT",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"devDependencies": {
"electron": "^30.0.0",
"electron-builder": "^24.13.3",
"icon-gen": "^3.0.1"
},
"build": {
"appId": "com.oddl.app",
"productName": "OD-DL",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"package.json"
],
"mac": {
"icon": "build/icon.icns"
},
"win": {
"icon": "build/icon.ico",
"signAndEditExecutable": false
}
}
}