Skip to content

Commit f2025dd

Browse files
committed
Merge branch 'develop'
2 parents 93188c0 + 8bd1081 commit f2025dd

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

package.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "mac-notepad",
3+
"version": "1.0.0",
4+
"description": "Una aplicación de bloc de notas simple creada con Electron para MAC",
5+
"main": "main.js",
6+
"scripts": {
7+
"start": "electron .",
8+
"package:mac": "electron-builder build --mac",
9+
"package:win": "electron-builder build --windows",
10+
"package:linux": "electron-builder build --linux"
11+
},
12+
"author": "Carlos Mur",
13+
"license": "ISC",
14+
"type": "commonjs",
15+
"dependencies": {
16+
"codemirror": "^5.65.2"
17+
},
18+
"devDependencies": {
19+
"electron": "^29.1.0",
20+
"electron-builder": "^25.1.8"
21+
},
22+
"build": {
23+
"appId": "com.cmurestudillos.mac-notepad-app",
24+
"productName": "MAC Notepad ++",
25+
"directories": {
26+
"output": "release/"
27+
},
28+
"mac": {
29+
"category": "public.app-category.developer-tools",
30+
"icon": "assets/icon.icns"
31+
},
32+
"win": {
33+
"icon": "assets/icon.ico"
34+
},
35+
"linux": {
36+
"icon": "assets/icon.png",
37+
"category": "Development"
38+
}
39+
}
40+
}

0 commit comments

Comments
 (0)