File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments