-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1.14 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
{
"name": "vidSmooth",
"version": "0.0.3",
"private": true,
"description": "Smooth out video motion.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build-mac": "electron-packager . 'vidSmooth' --platform=darwin --arch=x64 --icon='icon.icns' --overwrite --ignore=bin/win && open vidSmooth-darwin-x64",
"build-win": "electron-packager . vidSmooth --platform=win32 --arch=ia32 --icon=icon.icns --overwrite --ignore=bin/osx"
},
"keywords": [
"Electron"
],
"author": "Ben C. Smith, MD, FACEP",
"license": "CC0-1.0",
"bugs": {
"url": "https://www.ultrasoundoftheweek.com/vidSmooth"
},
"homepage": "https://www.ultrasoundoftheweek.com/vidSmooth",
"devDependencies": {
"electron": "^7.1.7",
"electron-packager": "^14.1.1"
},
"directories.bin": "node_modules/.bin/",
"dependencies": {
"app-root-dir": "^1.0.2",
"dialogue": "0.0.0",
"electron-store": "^5.1.0",
"electron-window-state": "^4.1.1",
"jquery": "^3.4.1",
"os-tmpdir": "^1.0.2",
"path": "^0.12.7",
"shelljs": "^0.7.6",
"tree-kill": "^1.2.2",
"unixify": "^1.0.0"
},
"productName": "vidSmooth"
}