-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 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
{
"name": "goofcord",
"version": "2.2.0",
"description": "Take control of your Discord experience with GoofCord – the highly configurable and privacy-minded discord client.",
"homepage": "https://github.com/Milkshiift/GoofCord",
"bugs": {
"url": "https://github.com/Milkshiift/GoofCord/issues"
},
"license": "OSL-3.0",
"author": "MilkShift",
"repository": {
"type": "git",
"url": "git+https://github.com/Milkshiift/GoofCord"
},
"type": "module",
"main": "ts-out/main.js",
"scripts": {
"build": "bun build/build.ts",
"start": "bun run build --dev && NODE_OPTIONS=\"--enable-source-maps\" electron ./ts-out/main.js --dev",
"packageLinux": "electron-builder --linux",
"packageWindows": "electron-builder --win",
"packageMac": "electron-builder --mac",
"loginFix": "rm -rf ~/.config/Electron/Local\\ Storage && cp -r ~/.config/goofcord/Local\\ Storage ~/.config/Electron/",
"lint": "oxlint --type-aware",
"fmt": "oxfmt",
"check": "tsgo"
},
"dependencies": {
"arrpc": "github:Milkshiift/arrpc",
"electron-sync-store": "github:Milkshiift/electron-sync-store",
"picocolors": "1.1.1",
"preact": "^10.29.1",
"stegcloak": "github:Milkshiift/stegcloak-rs"
},
"devDependencies": {
"@types/bun": "1.3.11",
"@types/node": "25.5.2",
"@vencord/types": "1.14.1",
"electron": "41.2.0",
"electron-builder": "26.8.1",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0",
"typescript": "6.0.2"
},
"peerDependencies": {
"@typescript/native-preview": "^7.0.0-dev.20260409.1"
},
"optionalDependencies": {
"patchcord": "github:Milkshiift/patchcord",
"venbind": "0.1.7"
},
"trustedDependencies": [
"electron"
]
}