-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.26 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "chargytransparenzsoftware",
"version": "1.4.6",
"description": "Chargy ist eine Transparenzsoftware für das Eichrecht in der Elektromobilität womit Endkunden die korrekte Messung und Abrechnung von Ladevorgängen überprüfen können.",
"author": "GraphDefined GmbH <[email protected]>",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/OpenChargingCloud/ChargyDesktopApp",
"repository": "https://github.com/OpenChargingCloud/ChargyDesktopApp",
"main": "src/main.cjs",
"type": "module",
"scripts": {
"start": "electron .",
"sbom": "cyclonedx-npm --output-format json --output-file sbom.json",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "install-app-deps"
},
"keywords": [
"Chargy",
"Transparenzsoftware",
"Transparenz",
"Eichrecht",
"Calibration Law",
"Elektromobilität",
"E-Mobilität",
"E-Mobility",
"Digital Certificate of Conformity",
"DCoC",
"Digital Calibration Certificate",
"DCC",
"Ladestationen",
"charging stations"
],
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^1.19.3",
"@types/chart.js": "^2.9.41",
"@types/decompress": "^4.2.7",
"@types/elliptic": "^6.4.18",
"@types/leaflet": "^1.9.14",
"@types/node": "^22.9.1",
"css-loader": "^7.1.2",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"electron-localshortcut": "^3.2.1",
"file-loader": "^6.2.0",
"sass": "^1.81.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.1",
"asn1.js": "^5.4.1",
"base32-decode": "^1.0.0",
"chart.js": "^4.4.6",
"decimal.js": "^10.4.3",
"decompress": "^4.2.1",
"decompress-bzip2": "^4.0.0",
"decompress-gz": "^0.0.1",
"elliptic": "^6.6.1",
"file-type": "^19.6.0",
"leaflet": "^1.9.4",
"leaflet.awesome-markers": "^2.0.5",
"moment": "^2.30.1",
"pdfjs-dist": "^4.8.69",
"safe-stable-stringify": "^2.5.0"
},
"build": {
"appId": "cloud.charging.c.lichtblick.chargy.desktop",
"productName": "Chargy Transparenzsoftware LichtBlick Edition",
"copyright": "Copyright © 2018-2024 GraphDefined GmbH",
"extraFiles": [
"build",
"documentation",
"appIcons",
"versions"
],
"fileAssociations": [
{
"ext": "chargy",
"description": "Charge Transparency File",
"mimeType": "application/x-chargy",
"role": "Viewer"
}
],
"win": {
"target": [
"nsis"
],
"icon": "src/icons/chargy_shield3.ico"
},
"nsis": {
"perMachine": true,
"installerIcon": "src/icons/chargy_shield3.ico",
"deleteAppDataOnUninstall": true,
"runAfterFinish": true
},
"linux": {
"target": [
"deb"
],
"icon": "src/icons/chargy_shield3"
},
"mac": {
"icon": "./src/icons/chargy_shield3.icns",
"category": "public.app-category.utilities",
"type": "distribution",
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
]
}
}
}