mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
* chore: migrate from altool to notarytool * fix litte things in build-common * add pyenv install in build-osx * add pyinstaller/electron/signing_logs to gitignore * chore: migrate from altool to notarytool * fix little things in build.common * add pyenv install in build osx * add pyinatsller electron signing logs to gitignore * updated build-osx.sh * fix entitlement * heavily refactoring the electron app * polish and improve * further bugfixing and polishing * tiny change to improve support of MacOS * Fix dependency issues --------- Co-authored-by: Manolis <moneymanolis@protonmail.com>
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "Specter",
|
|
"description": "Specter Desktop Electron application",
|
|
"version": "v0.0.0",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "export NODE_ENV=development && cp -R ../../src/cryptoadvance/specter/static/fonts ../../src/cryptoadvance/specter/static/output.css ../../src/cryptoadvance/specter/static/typography.css . && electron .",
|
|
"pack": "electron-builder --dir",
|
|
"dist": "electron-builder --publish=never",
|
|
"postinstall": "electron-builder install-app-deps"
|
|
},
|
|
"repository": "https://github.com/cryptoadvance/specter-desktop",
|
|
"keywords": [
|
|
"Electron",
|
|
"quick",
|
|
"start",
|
|
"tutorial",
|
|
"demo"
|
|
],
|
|
"author": "Specter",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"electron": "^22.3.12",
|
|
"electron-builder": "^23.6.0"
|
|
},
|
|
"build": {
|
|
"productName": "Specter",
|
|
"appId": "solutions.specter.desktop",
|
|
"mac": {
|
|
"category": "public.app-category.utilities",
|
|
"identity": "Kim Neunert (FWV59JHV83)",
|
|
"entitlements": "./build/entitlements.mac.plist",
|
|
"hardenedRuntime": true,
|
|
"icon": "./icons/icon.icns",
|
|
"provisioningProfile": "/Users/kim/Specter_Desktop_vanilla.provisionprofile"
|
|
},
|
|
"win": {
|
|
"icon": "./icons/icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
"AppImage"
|
|
],
|
|
"icon": "./icons/icon.png"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"electron-context-menu": "^2.5.2",
|
|
"electron-default-menu": "^1.0.2",
|
|
"electron-progressbar": "^2.1.0",
|
|
"extract-zip": "^2.0.1",
|
|
"read-last-lines": "^1.8.0",
|
|
"request": "^2.88.2",
|
|
"winston": "^3.3.3"
|
|
}
|
|
}
|