-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.16 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
{
"name": "octoprintstatusmenubar",
"productName": "OctoPrintStatusMenuBar",
"version": "0.1.0",
"description": "Check OctoPrint status right from your desktop",
"author": {
"name": "Benjamin Bales",
"email": "ben.bales.dev@gmail.com"
},
"license": "MIT",
"repository": "https://github.com/bbales/OctoPrintStatusMenuBar",
"main": "server.js",
"scripts": {
"build-linux": "electron-packager . OctoPrintStatus --out dist --overwrite --prune --platform=linux --arch=x64 --icon=./app/octoprint",
"build-osx": "electron-packager . OctoPrintStatus --out dist --overwrite --deref-symlinks --platform=darwin --arch=x64 --prune --icon=./app/octoprint",
"build": "npm run build-linux; npm run build-osx",
"start": "electron . ",
"css": "sass --watch app/scss/main.scss:app/css/main.css"
},
"files": [],
"keywords": [
"electron-app",
"electron"
],
"dependencies": {
"electron-default-menu": "^1.0.1",
"font-awesome": "^4.7.0",
"menubar": "^5.2.3",
"moment": "^2.17.1",
"node-notifier": "^5.0.2",
"vue": "^2.1.10"
},
"devDependencies": {
"electron": "^2.0.6",
"electron-packager": "^12.1.0"
}
}