-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 967 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 967 Bytes
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
{
"name": "note-app",
"version": "1.0.0",
"description": "Its a app to take notes",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build-linux": "electron-packager . app --platform linux --arch x64 --out linux/ --executableName note-app",
"build-linux:clear": "rm -rf linux",
"build-linux:deb": "electron-installer-debian --src linux/app-linux-x64/ --dest linux/installers/ --arch amd64 --config config.json",
"build-win": "electron-packager . app --overwrite --platform=win32 --arch=ia32 --icon=resources/Icon.ico --prune=true --out=win --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"NoteME\"",
"build-win:clear": "rm -rf win"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"moment": "^2.29.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"electron": "^11.1.1"
}
}