mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
Some checks failed
Build Docker container on push / Build image (push) Has been cancelled
Electron smoketest / smoketest (push) Has been cancelled
Tests / test (push) Has been cancelled
Tests / cypress (push) Has been cancelled
Tests / extension-smoketest (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
Black Python Linter / black (push) Has been cancelled
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
72 lines
No EOL
1.8 KiB
JSON
72 lines
No EOL
1.8 KiB
JSON
{
|
|
"name": "Specter",
|
|
"description": "Specter Desktop Electron application",
|
|
"version": "v2.0.4-pre9",
|
|
"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": "^39.8.10",
|
|
"electron-builder": "^26.8.1"
|
|
},
|
|
"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",
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": [
|
|
"universal"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"win": {
|
|
"icon": "./icons/icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
"AppImage"
|
|
],
|
|
"icon": "./icons/icon.png"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"electron-context-menu": "^3.6.1",
|
|
"electron-default-menu": "^1.0.2",
|
|
"electron-progressbar": "^2.2.1",
|
|
"extract-zip": "^2.0.1",
|
|
"read-last-lines": "^1.8.0",
|
|
"request": "^2.88.2",
|
|
"winston": "^3.13.0"
|
|
},
|
|
"overrides": {
|
|
"request": {
|
|
"form-data": "^2.5.4"
|
|
}
|
|
},
|
|
"resolutions": {
|
|
"**/request/form-data": "^2.5.4"
|
|
}
|
|
} |