-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 986 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 986 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "mac-notepad",
"version": "1.0.0",
"description": "Una aplicación de bloc de notas simple creada con Electron para MAC",
"main": "main.js",
"scripts": {
"start": "electron .",
"package:mac": "electron-builder build --mac",
"package:win": "electron-builder build --windows",
"package:linux": "electron-builder build --linux"
},
"author": "Carlos Mur",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"codemirror": "^5.65.2"
},
"devDependencies": {
"electron": "^29.1.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.cmurestudillos.mac-notepad-app",
"productName": "MAC Notepad ++",
"directories": {
"output": "release/"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/icon.icns"
},
"win": {
"icon": "assets/icon.ico"
},
"linux": {
"icon": "assets/icon.png",
"category": "Development"
}
}
}