-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "remix",
"version": "0.4.0",
"description": "Remix Solidity IDE https://remix.ethereum.org - Electron Edition",
"author": "Peter Kieltyka <[email protected]>",
"credits": "Horizon Blockchain Games https://horizongames.net",
"copyright": "Remix by https://github.com/ethereum/remix",
"license": "MIT",
"homepage": "https://github.com/horizon-games/remix-app",
"main": "build/main.js",
"build": {
"appId": "net.horizongames.remix",
"files": [
"build/**/*",
"resources/**"
],
"directories": {
"buildResources": "resources"
},
"win": {
"target": [{
"target": "portable",
"arch": ["x64", "ia32"]
}]
},
"mac": {
"target": ["dmg"]
},
"linux": {
"target": ["tar.gz"]
}
},
"scripts": {
"postinstall": "node scripts/remix-dl.js",
"dev": "node scripts/start.js",
"clean": "rimraf dist",
"build": "webpack --mode production --color --config=webpack.config.js --env=production",
"pack": "yarn dist:all --dir",
"dist": "yarn build && electron-builder",
"dist:all": "yarn dist -wml",
"dist:windows": "yarn dist -w",
"dist:mac": "yarn dist -m",
"dist:linux": "yarn dist -l"
},
"dependencies": {
"electron-fetch": "1.3.0",
"fs-jetpack": "2.2.2"
},
"devDependencies": {
"@babel/core": "7.5.4",
"@babel/plugin-proposal-object-rest-spread": "7.5.4",
"@babel/preset-env": "7.5.4",
"babel-loader": "8.0.6",
"electron": "5.0.6",
"electron-builder": "20.44.4",
"request": "^2.88.0",
"rimraf": "2.6.3",
"source-map-support": "^0.5.12",
"unzipper": "0.10.1",
"webpack": "4.35.3",
"webpack-cli": "3.3.5",
"webpack-node-externals": "1.7.2"
}
}