-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.78 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
94
95
96
97
98
99
{
"name": "tw-launcher",
"version": "1.2.2-beta.1",
"description": "TWLauncher",
"main": "main.js",
"scripts": {
"start": "electron .",
"build:win-portable": "electron-builder --win portable",
"build:win-installer": "electron-builder --win nsis",
"build:linux-appimage": "electron-builder --linux appimage",
"build:linux-installer": "electron-builder --linux deb"
},
"author": {
"name": "changeInBuild",
"email": "get@changedin.build"
},
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.16",
"axios": "^1.12.0",
"discord-rpc": "^4.0.1",
"dotenv": "^16.4.7",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"electron": "latest",
"electron-builder": "^26.0.12"
},
"homepage": "https://twlauncher.netlify.app",
"bugs": {
"url": "https://github.com/noxygalaxy/twlauncher/issues"
},
"build": {
"appId": "com.noxygalaxy.twlauncher",
"productName": "TWLauncher",
"copyright": "2025 noxygalaxy",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"src/**/*",
"node_modules/**/*",
"package.json",
"mod.json"
],
"extraFiles": [
{
"from": ".env",
"to": "."
}
],
"win": {
"target": [
"portable",
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "src/assets/logos/twl.ico",
"artifactName": "${productName}-Setup.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "src/assets/logos/twl.ico",
"uninstallerIcon": "src/assets/logos/twl.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "TWLauncher"
},
"linux": {
"target": [
"appimage",
"deb"
],
"icon": "src/assets/logos/twl.png",
"category": "Utility",
"maintainer": "${author.name} <${author.email}>"
},
"portable": {
"artifactName": "${productName}-${arch}.${ext}"
},
"appImage": {
"artifactName": "${productName}-${arch}.AppImage"
},
"deb": {
"artifactName": "${productName}-${arch}.${ext}"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/noxygalaxy/TWLauncher.git"
},
"keywords": []
}