-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (58 loc) · 1.23 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "notepad",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"author": {
"name": "Maria Carolina",
"email": "mariacarolinatech@gmail.com"
},
"type": "module",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "electron-builder"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"electron-packager": "^17.1.2"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"marked": "^15.0.2"
},
"build": {
"appId": "com.notepad.app",
"productName": "Notepad",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"package.json"
],
"win": {
"target": "nsis",
"icon": "src/icon/np.ico"
},
"linux": {
"target": ["deb"],
"icon": "src/icon.png"
},
"mac": {
"target": ["dmg", "zip"],
"icon": "src/icon.icns",
"category": "public.app-category.utilities",
"artifactName": "${productName}-${version}-${os}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
}
}
}