forked from Legcord/Legcord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.4 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
{
"name": "legcord",
"version": "1.0.0",
"description": "Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight.",
"main": "ts-out/main.js",
"engines": {
"node": ">=22"
},
"scripts": {
"build:dev": "rollup -c --environment BUILD:dev",
"build:plugins": "lune ci --repoSubDir src/shelter --to ts-out/plugins && node ./scripts/fixBundles.js",
"build": "pnpm build:plugins && rollup -c --environment BUILD:prod",
"start": "pnpm build:plugins && pnpm run build:dev && electron --trace-warnings --ozone-platform-hint=auto ./ts-out/main.js",
"startThemeManager": "pnpm run build:dev && electron ./ts-out/main.js themes",
"package": "pnpm run build && electron-builder",
"packageQuick": "pnpm run build && electron-builder --dir",
"lint": "biome check",
"lint:fix": "biome check --write",
"CIbuild": "pnpm run build && electron-builder --linux zip && electron-builder --windows zip && electron-builder --macos zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Legcord/Legcord.git"
},
"author": "smartfrigde",
"license": "OSL-3.0",
"type": "module",
"bugs": {
"url": "https://github.com/Legcord/Legcord/issues"
},
"homepage": "https://github.com/Legcord/Legcord#readme",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-esm-shim": "^0.1.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^22.7.5",
"@types/ws": "^8.5.12",
"@uwu/lune": "^1.4.2",
"@uwu/shelter-defs": "^1.4.1",
"electron": "32.2.0",
"electron-builder": "^25.1.7",
"rollup": "^4.24.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild": "^6.1.1",
"solid-js": "^1.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"arrpc": "github:Legcord/arrpc",
"electron-context-menu": "^4.0.4",
"electron-is-dev": "^3.0.1",
"v8-compile-cache": "^2.4.0",
"ws": "^8.18.0"
},
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
"package-manager-strict": false
}