-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.27 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "velas-desktop-wallet",
"homepage": "velas.com",
"version": "1.2.6",
"description": "Velas Wallet",
"main": "main.js",
"scripts": {
"start": "electron . --trace-warnings",
"ls": "electron-builder --help",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish always",
"dist-nix": "electron-builder --linux",
"dist-deb": "electron-builder --linux deb tar.xz",
"dist-win": "electron-builder --win portable",
"dist-mac": "electron-builder --mac",
"release": "electron-builder --windows --linux --mac --publish always",
"phonegap-build": "browserify -t browserify-livescript phonegap/www/js/index.js > phonegap/www/js/bundle.js && cp ./main-bundle.css phonegap/www/css/index.css",
"rebuild": "electron-rebuild -f -w web3-wallet",
"postinstall": "electron-builder install-app-deps",
"install": "cp scripts/pre-commit .git/hooks/ && cp scripts/pre-push .git/hooks/ && chmod u+x .git/hooks/pre-commit && chmod u+x .git/hooks/pre-push && chmod u+x scripts/bump-version.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/velas/JsWalletDesktop"
},
"keywords": [
"Electron",
"quick",
"start"
],
"license": "CC0-1.0",
"devDependencies": {
"@electron/notarize": "^1.2.3",
"@electron/rebuild": "3.2.13",
"app-builder-bin": "^3.5.2",
"electron": "^24.2.0",
"electron-builder": "latest",
"node-pre-gyp": "^0.17.0"
},
"author": "Velas <info@velas.com>",
"build": {
"framework": "electron",
"afterSign": "scripts/notarize.js",
"appId": "com.velas.wallet",
"mac": {
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"dmg": {
"title": "Velas Wallet v1.2.0",
"icon": false,
"sign": false
},
"win": {
"target": "NSIS",
"icon": "./icon.icns"
},
"linux": {
"target": [
"snap"
],
"category": "Utility",
"publish": [
"github"
]
},
"afterAllArtifactBuild": "scripts/calc-md5.js"
},
"dependencies": {
"@bugsnag/electron": "^7.20.2",
"md5-file": "^5.0.0"
}
}