-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.78 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
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
100
101
102
103
104
105
{
"name": "legcord-legacy",
"version": "1.0.0",
"description": "Legcord Legacy is a custom client designed to enhance your Discord experience while keeping everything lightweight.",
"main": "ts-out/main.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "npm run build:plugins && tsc && copyfiles -u 1 src/**/*.html src/**/**/*.css src/**/**/*.js ts-out/ && copyfiles package.json ts-out/ && copyfiles assets/**/** ts-out/",
"build:plugins": "lune ci --repoSubDir src/shelter --to ts-out/plugins && node ./scripts/fixBundles.js",
"watch": "tsc -w",
"start": "npm run build && electron ./ts-out/main.js",
"startWayland": "npm run build && electron ./ts-out/main.js --ozone-platform-hint=auto --enable-features=WebRTCPipeWireCapturer,WaylandWindowDecorations --disable-gpu",
"package": "npm run build && electron-builder",
"packageQuick": "npm run build && electron-builder --dir",
"format": "prettier --write src *.json",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"CIbuild": "npm run build && electron-builder --linux zip && electron-builder --windows zip && electron-builder --macos zip",
"prepare": "git config --local core.hooksPath .hooks/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Legcord/Legacy.git"
},
"author": "smartfrigde",
"license": "OSL-3.0",
"bugs": {
"url": "https://github.com/Legcord/Legacy/issues"
},
"homepage": "https://github.com/Legcord/Legacy#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"copyfiles": "^2.4.1",
"electron": "20.3.12",
"electron-builder": "24.13.3",
"eslint": "^8.40.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"@uwu/lune": "^1.4.2",
"@uwu/shelter-defs": "^1.4.1",
"prettier": "^2.7.1",
"typescript": "^4.9.3"
},
"dependencies": {
"arrpc": "file:src/arrpc",
"cross-fetch": "^3.1.5",
"electron-context-menu": "github:Legcord/electron-context-menu",
"extract-zip": "^2.0.1",
"v8-compile-cache": "^2.3.0",
"ws": "^8.11.0"
},
"build": {
"snap": {
"allowNativeWayland": false,
"environment": {
"ARRPC_NO_PROCESS_SCANNING": "true"
},
"executableArgs": [
"--no-process-scanning"
]
},
"nsis": {
"include": "build/installer.nsh",
"allowToChangeInstallationDirectory": true,
"license": "LICENSE",
"oneClick": false
},
"files": [
"!*",
"assets",
"node_modules",
"ts-out",
"package.json",
"LICENSE"
],
"appId": "com.smartfridge.legcord",
"productName": "Legcord",
"mac": {
"category": "Network"
},
"linux": {
"icon": "build/icon.icns",
"category": "Network",
"maintainer": "[email protected]",
"target": [
"deb",
"tar.gz",
"rpm",
"AppImage"
]
},
"appx": {
"identityName": "53758smartfrigde.Legcord",
"publisher": "CN=EAB3A6D3-7145-4623-8176-D579F573F339",
"publisherDisplayName": "smartfrigde",
"applicationId": "smartfrigde.Legcord"
}
},
"packageManager": "[email protected]"
}