-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.22 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "dzlinux",
"version": "1.4.5",
"description": "DzLinux Server Browser",
"desktopName": "DzLinux",
"main": "src/main/main.js",
"scripts": {
"start": "electron .",
"prebuild": "jest",
"build": "electron-builder --linux",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"sync-versions": "node scripts/sync-versions.js",
"prepare": "husky"
},
"build": {
"appId": "com.dawiisss.dzlinux",
"productName": "DzLinux",
"publish": {
"provider": "github",
"owner": "dawiisss",
"repo": "DzLinux"
},
"linux": {
"target": [
"AppImage",
"tar.gz",
"deb",
"rpm"
],
"syncDesktopName": true,
"category": "Game",
"icon": "build/icons",
"synopsis": "DayZ Server Browser & Mod Manager for Linux",
"description": "A standalone desktop application for browsing DayZ servers, managing Steam Workshop mods, and launching the game with Proton support. Features real-time A2S server queries, mod dependency resolution, crash diagnostics, and auto-updates."
},
"deb": {
"depends": [
"xdg-utils"
]
},
"rpm": {
"depends": [
"xdg-utils"
]
},
"extraFiles": [
{
"from": "acknowledgments.txt",
"to": "."
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dawiisss/DzLinux.git"
},
"keywords": [],
"author": {
"name": "dawiisss",
"email": "dzlinux@route2place.com"
},
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/dawiisss/DzLinux/issues"
},
"homepage": "https://github.com/dawiisss/DzLinux#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"electron": "^43.0.0",
"electron-builder": "^26.15.3",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^17.0.8"
},
"dependencies": {
"axios": "^1.17.0",
"electron-updater": "^6.8.9",
"gamedig": "^5.3.3",
"steamworks.js": "^0.4.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"jest --findRelatedTests --passWithNoTests"
]
}
}