-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
executable file
·107 lines (107 loc) · 3.05 KB
/
package.json
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "Safex1ClickMiner",
"description": "Safex 1 Click Mining App Blockchain proof of work Safex Cash",
"version": "v0.0.3",
"homepage": ".",
"repository": {
"type": "git",
"url": "https://github.com/safex/safex_miner"
},
"author": {
"name": "Safex Developers",
"url": "https://safex.io",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Uroš Mitrović",
"url": "https://github.com/Kiu0612",
"email": "[email protected]"
}
],
"license": "LicenseRef-LICENSE",
"bugs": "https://github.com/safex/safex_miner/issues",
"keywords": [
"safex cash",
"safex mining app",
"bitcoin",
"blockchain",
"proof of work",
"electron"
],
"devDependencies": {
"electron": "^1.7.11",
"electron-builder": "^19.41.0",
"electron-installer-dmg": "^0.2.1",
"electron-packager": "^8.7.2",
"electron-react-devtools": "^0.5.3",
"electron-rebuild": "^1.8.2",
"electron-winstaller": "^2.6.3",
"foreman": "^3.0.0",
"react-scripts": "^0.8.5"
},
"dependencies": {
"axios": "^0.16.2",
"electron-context-menu": "^0.9.1",
"js-file-download": "^0.4.4",
"node-xmrig-cpu": "git+https://github.com/atanmarko/node-xmrig.git",
"react": "^15.6.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^15.6.2",
"react-router": "^3.2.1",
"safex-addressjs": "git+https://github.com/safex/safex_addressjs.git",
"safex-nodejs-libwallet": "https://github.com/safex/safex-nodejs-libwallet.git"
},
"main": "src/electron-starter.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"dev": "nf start -p 4000",
"dist": "build",
"make-mac-installer": "npm run build && electron-builder build -m",
"make-win-installer": "npm run build && electron-builder build -w --x64",
"make-linux-installer": "npm run build && electron-builder build -l",
"make-all-installers": "npm run build && electron-builder build -ml && electron-builder build -w --x64 --ia32"
},
"build": {
"appId": "com.electron.safex_1_click_mining_app",
"npmRebuild": true,
"extends": null,
"files": [
"**/*",
"build/*.*",
"build/css/*.*",
"build/fonts/*.*",
"build/images/*.*",
"build/static/css/*.*",
"build/static/js/*.*",
"!node_modules/safex-nodejs-libwallet/boost*",
"!node_modules/safex-nodejs-libwallet/safexcore",
"!node_modules/safex-nodejs-libwallet/deps",
"!node_modules/safex-nodejs-libwallet/build"
],
"mac": {
"category": "public.app-category.business",
"icon": "public/images/icons/icon2.icns",
"type": "distribution",
"target": [
"dmg"
]
},
"win": {
"target": "nsis",
"icon": "public/images/icons/icon2.ico"
},
"linux": {
"target": [
"deb",
"rpm"
],
"category": "Utility",
"icon": "public/images/icons/icon2.png"
}
}
}