-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·92 lines (92 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cooperativista",
"version": "0.9.3",
"productName": "Cooperativista",
"description": "Administración de cooperadoras",
"homepage": "https://pax17.github.io/cooperativista/",
"main": "./main.js",
"repository": "github:Pax17/cooperativista",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron . built",
"plain": "electron . plain",
"test": "echo \"Error: no tests specified\" && exit 1",
"release": "build",
"publish": "build -p"
},
"build": {
"directories": {
"buildResources": "assets"
},
"linux": {
"icon": "assets/icons/png"
},
"mac": {
"target": "dmg",
"icon": "assets/icons/mac/icon.icns"
},
"win": {
"icon": "assets/icons/win/icon.ico"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 370,
"height": 280
},
"internetEnabled": true
},
"files": [
"main.js",
"pdfkitExtended.js",
"initialSettings.json",
"pdf.js",
"db/**/*",
"server/**/*",
"menu/**/*",
"translations/**/*",
"client_built/**/*",
"node_modules/**/*",
"package.json"
],
"appId": "com.pax17.cooperativista",
"publish": [
{
"provider": "github",
"owner": "Pax17",
"repo": "cooperativista",
"releaseType": "prerelease"
}
]
},
"author": "Martín Panizzo",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^5.0.1",
"dataobject-parser": "^1.2.1",
"electron-log": "^2.2.17",
"electron-pdf-window": "^1.0.12",
"electron-routes": "^1.3.0",
"electron-settings": "^3.2.0",
"electron-updater": "^4.0.6",
"pdfkit": "^0.8.3",
"platform-folders": "^0.2.7",
"rss-parser": "^3.5.4"
},
"devDependencies": {
"electron": "^3.0.9",
"electron-builder": "^20.28.4"
}
}