-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.09 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.09 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
{
"name": "MathNote",
"version": "1.0.0",
"description": "Math notebook written using Electron.js",
"main": "index.js",
"dependencies": {
"firstline": "^2.0.2",
"glob": "^7.1.4",
"markdown": "^0.5.0",
"node-watch": "^0.6.2",
"open": "^6.3.0"
},
"devDependencies": {
"electron": "^5.0.6",
"electron-packager": "^14.0.0"
},
"scripts": {
"start": "ELECTRON_ENV=development electron .",
"build-mac": "electron-packager . MathNote --overwrite --platform=darwin --arch=x64 --icon=logo/icon.icns --prune=true --out=release-builds",
"build-win": "electron-packager . MathNote --overwrite --platform=win32 --arch=x64 --icon=logo/icon.ico --prune=true --out=release-builds",
"build-linux": "electron-packager . MathNote --overwrite --platform=linux --arch=x64 --icon=logo/icon.png --prune=true --out=release-builds",
"release": "npm ci && npm run build-mac && npm run build-win && npm run build-linux"
},
"keywords": [
"math",
"notes"
],
"author": "Marise Hayashi <@limitedeternity> (https://limitedeternity.github.io/)",
"license": "MIT"
}