-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.49 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
{
"name": "gpx-tagger",
"version": "2.2.0",
"description": "An Electron application to add GPX metadata to image files",
"main": "build/main.bundle.cjs",
"author": "Dr. Martin von Berg",
"copyright": "Copyright (c) 2026 Dr. Martin von Berg",
"license": "GPL-2.0",
"scripts": {
"start": "electron .",
"test": "node scripts/jest-runner.js",
"devbuild": "webpack --config webpack.main.cjs --mode development && webpack --config webpack.config.js --mode development",
"prodbuild": "webpack --config webpack.main.cjs --mode production && webpack --config webpack.config.js --mode production",
"devrun": "npm run devbuild && npm start",
"prodrun": "npm run prodbuild && npm start",
"install-app-deps": "cd app && npm install --omit=dev",
"prepare-app": "node scripts/prepare-app.js",
"finalize-app": "node scripts/finalize-app-win.js",
"package": "npm run prodbuild && npm run prepare-app && npm run install-app-deps && npx electron-packager ./app GpxTaggerApp --platform=win32 --arch=x64 --out=dist --overwrite --app-version=2.2.0 --app-copyright=\"Copyright (c) 2026 Dr. Martin von Berg\" --win32metadata.CompanyName=\"Dr. Martin von Berg\" && npm run finalize-app",
"package:linux": "npm run prodbuild && npm run prepare-app && npm run install-app-deps && npx electron-packager ./app GpxTaggerApp --platform=linux --arch=x64 --out=dist-linux --overwrite --app-version=2.2.0 && npm run finalize-app",
"package:mac": "npm run prodbuild && npm run prepare-app && npm run install-app-deps && npx electron-packager ./app GpxTaggerApp --platform=darwin --arch=x64 --out=dist-maxOS --overwrite --app-version=2.2.0 && npm run finalize-app"
},
"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "*",
"@electron/packager": "^19.0.5",
"@photostructure/tz-lookup": "^11.2.1",
"@turf/helpers": "^7.2.0",
"babel-loader": "*",
"coordinate-parser": "^1.0.7",
"css-loader": "^7.1.4",
"electron": "^41.x.x",
"electron-rebuild": "^3.2.9",
"exiftool-vendored": "^35.9.0",
"geo-tz": "^8.1.4",
"i18next": "^25.8.9",
"i18next-fs-backend": "^2.6.0",
"jest": "^30.2.0",
"leaflet": "^1.9.4",
"leaflet-control-geocoder": "^3.3.1",
"leaflet-gpx": "^2.2.0",
"leaflet.locatecontrol": "*",
"open-location-code": "^1.0.3",
"sanitize-html": "^2.17.0",
"style-loader": "^4.0.0",
"webpack": "*",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"exiftool-vendored": "^35.9.0",
"sharp": "^0.34.5"
}
}