-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "to-do-list",
"version": "1.0.1",
"description": "A simple To-Do-List for destop",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder --win --mac --linux",
"build:linux": "electron-builder --linux",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"release:linux": "electron-builder --linux -p always -c.snap.publish=github",
"release:mac": "electron-builder --mac -p always",
"release:win": "electron-builder --win -p always"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarkFalc0n/To-Do-List.git"
},
"author": "Pratyay Roy",
"license": "MIT",
"bugs": {
"url": "https://github.com/DarkFalc0n/To-Do-List/issues"
},
"homepage": "https://github.com/DarkFalc0n/To-Do-List#readme",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.63",
"electron": "^16.0.6",
"electron-builder": "^22.14.5"
},
"dependencies": {}
}