forked from COVAIL/electron-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 799 Bytes
/
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
{
"name": "shinyElectron",
"version": "3.0.0",
"description": "A minimal Electron application",
"main": "main.js",
"scripts": {
"start": "electron .",
"package-mac": "node scripts/darwin.js",
"package-win": "node scripts/win32.js",
"package-linux": "node scripts/linux.js",
"test-linux": "node scripts/test-linux.js"
},
"repository": "https://github.com/zekrom-vale/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo",
"R",
"shiny",
"Windows",
"MacOS"
],
"author": "zekrom-vale",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^29.1.5"
},
"dependencies": {
"await-to-js": "^3.0.0",
"config": "^3.3.11",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0"
}
}