-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.37 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.37 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
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
108
109
110
111
112
113
114
{
"name": "local_SQL_storage_electron",
"version": "1.0.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Electron Main",
"program": "${workspaceFolder}/main.js",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
},
"args": [
"."
],
"cwd": "${workspaceFolder}",
"env": {},
"console": "integratedTerminal"
}
],
"description": "shiny app for local storage data collection.",
"main": "main.js",
"author": {
"name": "Timothy Gilbert",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/tgilbert14"
},
"license": "CC0-1.0",
"keywords": [
"shiny",
"electron",
"sqlite",
"local storage",
"data collection"
],
"homepage": "https://github.com/tgilbert14",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=cc.ico --out=ElectronShinyApp",
"package-win": "electron-packager . --overwrite --platform=win32 --arch=ia32 --icon=cc.ico --out=ElectronShinyApp --version-string.CompanyName=ColumbusCollaboratory --version-string.FileDescription=CE --version-string.ProductName=\"Shiny Electron App\"",
"package-linux": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=assets/icons/png/1024x1024.png --prune=true --out=release-builds"
},
"build": {
"appId": "local_SQL_storage_electron",
"asar": false,
"files": [
"R-Portable/**",
"storage/SQL_storage.db",
"main.js",
"app.R",
"node_modules/**",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": "x64"
}
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"uninstallDisplayName": "Shiny Storage Electron App",
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"linux": {
"target": [
{
"target": "AppImage"
}
]
},
"mac": {
"target": [
{
"target": "dmg"
}
]
},
"dmg": {
"contents": [
{
"x": 448,
"y": 344,
"type": "link",
"path": "/Applications"
},
{
"x": 192,
"y": 344,
"type": "file"
}
]
}
},
"devDependencies": {
"electron": "36.4.0",
"electron-builder": "26.0.12",
"electron-prebuilt-compile": "8.2.0",
"electron-rebuild": "3.2.9"
},
"dependencies": {
"sqlite3": "5.1.7"
}
}