This repository has been archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 265
/
package.json
101 lines (101 loc) · 2.11 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
{
"version": "1.3.7",
"name": "remix-ide",
"description": "Remix - Ethereum IDE",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"release": "yarn run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix-desktop.git"
},
"author": {
"name": "Remix Team",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remix-desktop/issues"
},
"homepage": "https://github.com/ethereum/remix-desktop#readme",
"devDependencies": {
"electron": "20.0.3",
"electron-builder": "23.3.3",
"typescript": "^4.7.4"
},
"build": {
"productName": "Remix IDE",
"appId": "org.ethereum.remix-ide",
"asar": true,
"files": [
"main.js",
"selectFolder.js",
"setFolder.js",
"applicationMenu.js",
"config.js",
"build/icon.png",
"*.asar",
"*.zip"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
},
{
"target": "dmg",
"arch": [
"x64",
"arm64",
"universal"
]
}
],
"darkModeSupport": true
},
"dmg": {
"writeUpdateInfo": false
},
"nsis": {
"createDesktopShortcut": "always",
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"shortcutName": "Remix IDE",
"differentialPackage": false
},
"win": {
"target": [
"zip",
"nsis"
]
},
"linux": {
"target": [
"deb",
"snap",
"AppImage"
],
"category": "WebBrowser"
},
"directories": {
"output": "release"
}
},
"dependencies": {
"@remix-project/remixd": "^0.6.6",
"electron-app-manager": "EthereumRemix/electron-app-manager#remix-dep",
"fs-extra": "^3.0.1",
"latest-version": "^5.1.0",
"node-fetch": "^2.6.1",
"semver": "^7.3.5",
"fix-path": "3.0.0"
}
}