-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 906 Bytes
/
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
{
"name": "notely",
"productName": "Notely",
"description": "An application to improve prodectivity and friendly for students who the seek focus. Note: to build the application put (''electron-builder'': ''24.10.0'') in ('devDependencies':) and put ('dist': 'electron-builder') in ('scripts':) then execute (npm run dist)",
"keywords": [],
"main": "./main.js",
"version": "1.0.1",
"author": "Bilal Belli",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"dependencies": {
"bootstrap": "5.3.2",
"quill": "^1.3.7"
},
"build": {
"appId": "com.bilalbelli.notely",
"productName": "Notely",
"mac": {
"icon": "./icons/logo.icns"
},
"win": {
"icon": "./icons/logo.ico"
},
"linux": {
"icon": "./icons/logo.png"
}
},
"devDependencies": {
"electron": "27.1.3",
"electron-builder": "^24.9.1"
}
}