-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.17 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.17 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
{
"name": "futhero-launcher",
"version": "1.5.1",
"description": "A secure bonk.io and haxball launcher with frontend manipulation capabilities.",
"main": "dist/main.js",
"scripts": {
"dev": "npm run build && electron .",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.scripts.json && npm run copy-assets && npm run copy-scripts-static",
"build:win": "npm run build && electron-builder --win",
"build:linux": "npm run build && electron-builder --linux",
"build:mac": "npm run build && electron-builder --mac",
"copy-assets": "node scripts/copy-assets.js",
"copy-scripts-static": "node scripts/copy-static.js",
"start": "electron .",
"generate-icons": "node scripts/generate-icons.js",
"publish_1": "git version minor",
"publish_2": "git push",
"publish_3": "git push --tags",
"publish": "npm run publish_1 && npm run publish_2 && npm run publish_3"
},
"author": "brenoluizdev",
"license": "ISC",
"build": {
"appId": "com.brenoluizdev.futhero",
"productName": "Futhero",
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"dist/**/*",
"assets/**/*",
"!node_modules/.cache/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "dist/scripts",
"to": "scripts"
},
{
"from": "dist/pages",
"to": "pages"
},
{
"from": "dist/configs",
"to": "configs"
}
],
"win": {
"target": [
"nsis"
],
"icon": "build/icon.ico"
},
"linux": {
"icon": "assets/images/icon.png",
"target": [
"AppImage"
]
},
"publish": [
{
"provider": "github",
"owner": "brenoluizdev",
"repo": "Futhero-Desktop"
}
]
},
"devDependencies": {
"@types/electron": "^1.6.12",
"@types/node": "^20.12.12",
"electron": "^39.1.1",
"electron-builder": "^26.0.12",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.4",
"dotenv": "^17.2.3",
"electron-is-dev": "^3.0.1",
"electron-updater": "^6.6.2"
}
}