-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.58 KB
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
{
"name": "fsprinter",
"version": "1.4.1",
"description": "Electron app to connect printers to FacturaScripts and factura.city",
"main": "main.js",
"scripts": {
"start": "electron . --no-sandbox",
"build": "electron-builder",
"build:linux": "electron-builder --linux --publish never",
"build:win": "electron-builder --win --publish never",
"build:mac": "electron-builder --mac --publish never"
},
"keywords": [],
"author": {
"name": "Carlos García Gómez",
"email": "carlos@facturascripts.com"
},
"license": "LGPL-3.0",
"devDependencies": {
"electron": "^42",
"electron-builder": "^26.15.6"
},
"dependencies": {
"axios": "^1.12.2",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.11.0",
"electron-settings": "^4.0.2",
"node-fetch": "^2.6.1"
},
"build": {
"appId": "com.megacity20.fsprinter",
"productName": "FSPrinter",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!node_modules/**/*",
"node_modules/**/*"
],
"asarUnpack": [
"node_modules/**/*",
"RawPrint.exe"
],
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"category": "Office"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.productivity",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"identity": null
}
},
"allowScripts": {
"electron-winstaller@5.4.0": true
}
}