forked from Legcord/Legcord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.68 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.68 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
{
"name": "legcord",
"version": "1.2.3",
"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 && tsx scripts/copyVenmic.mts",
"build:plugins": "lune ci --repoSubDir src/shelter --to ts-out/plugins",
"build": "pnpm build:plugins && rolldown -c rolldown.config.js && tsx scripts/copyVenmic.mts",
"start": "pnpm run build && 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",
"postinstall": "electron-builder install-app-deps",
"CIbuild": "pnpm run build && electron-builder --linux zip && electron-builder --windows zip && electron-builder --macos zip",
"updateMeta": "tsx scripts/utils/updateMeta.mts"
},
"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": {
"@babel/preset-flow": "^7.25.9",
"@babel/preset-typescript": "^7.27.1",
"@biomejs/biome": "1.9.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-esm-shim": "^0.1.7",
"@types/minimatch": "^6.0.0",
"@types/node": "^22.10.1",
"@types/ws": "^8.5.13",
"@uwu/lune": "^1.6.2",
"@uwu/shelter-defs": "^1.5.1",
"babel-preset-solid": "^1.9.3",
"electron": "40.6.0",
"electron-builder": "26.0.20",
"lucide-solid": "^0.475.0",
"rolldown": "1.0.0-rc.2",
"rollup-plugin-copy": "^3.5.0",
"solid-js": "^1.9.3",
"solid-motionone": "^1.0.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"xml-formatter": "^3.6.6"
},
"dependencies": {
"arrpc": "https://github.com/Legcord/arrpc.git#0605ca72fda920919e4e75e80945512b9fb347f1",
"electron-context-menu": "^4.0.4",
"electron-is-dev": "^3.0.1",
"electron-updater": "^6.6.2",
"ws": "^8.18.0"
},
"optionalDependencies": {
"@vencord/venmic": "^6.1.0"
},
"packageManager": "pnpm@10.11.0",
"package-manager-strict": false
}