-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.85 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
{
"name": "goofcord",
"version": "1.8.2-beta.1",
"description": "Take control of your Discord experience with GoofCord – the highly configurable and privacy-minded discord client.",
"main": "ts-out/main.js",
"scripts": {
"build": "bun build/build.ts",
"start": "bun run build --dev && electron ./ts-out/main.js --dev --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform-hint=auto",
"startWithLoginFix": "bun run fixLogin && bun run start",
"packageLinux": "bun run build && electron-builder --linux",
"packageWindows": "bun run build && electron-builder --win",
"packageMac": "bun run build && electron-builder --mac",
"fixLogin": "rm -rf ~/.config/Electron/Local\\ Storage && cp -r ~/.config/goofcord/Local\\ Storage ~/.config/Electron/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Milkshiift/GoofCord"
},
"author": "MilkShift",
"license": "OSL-3.0",
"bugs": {
"url": "https://github.com/Milkshiift/GoofCord/issues"
},
"homepage": "https://github.com/Milkshiift/GoofCord",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.16",
"@types/node": "^22.10.6",
"@types/stegcloak": "^1.0.2",
"electron": "^34.0.0",
"electron-builder": "26.0.0-alpha.9",
"ts-morph": "^25.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"arrpc": "github:Milkshiift/arrpc",
"auto-launch": "^5.0.6",
"electron-context-menu": "github:Milkshiift/electron-context-menu",
"jimp": "^1.6.0",
"picocolors": "^1.1.1",
"stegcloak": "github:Milkshiift/stegcloak-node",
"v8-compile-cache": "^2.4.0"
},
"optionalDependencies": {
"@vencord/venmic": "^6.1.0"
},
"trustedDependencies": [
"@biomejs/biome",
"bufferutil",
"electron",
"esbuild"
],
"engines": {
"node": ">=21.0.0"
},
"type": "module"
}