-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.65 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.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
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": "replugged",
"version": "4.11.2",
"description": "A lightweight @discord client mod focused on simplicity and performance",
"bugs": {
"url": "https://github.com/replugged-org/replugged/issues"
},
"repository": "https://github.com/replugged-org/replugged.git",
"license": "MIT",
"author": "Replugged",
"main": "dist/main.js",
"types": "dist/renderer/replugged.d.ts",
"bin": {
"replugged": "bin.mjs"
},
"files": [
"dist",
"bin",
"scripts",
"*.d.ts",
"src/util.mts"
],
"scripts": {
"build": "tsx scripts/build.mts",
"bundle": "tsx scripts/build.mts --production",
"watch": "tsx scripts/build.mts --watch",
"plug": "tsx scripts/inject/index.mts inject --no-exit-codes",
"unplug": "tsx scripts/inject/index.mts uninject --no-exit-codes",
"replug": "tsx scripts/inject/index.mts reinject",
"typescript:check": "tsc --noEmit",
"cspell:check": "cspell lint ./src/**/* ./scripts/**/* ./bin/**/*",
"prettier:check": "prettier ./src ./scripts ./bin --check",
"eslint:check": "eslint ./src ./scripts ./bin",
"prettier:fix": "prettier ./src ./scripts ./bin --write",
"eslint:fix": "eslint ./src ./scripts ./bin --fix",
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run cspell:check && pnpm run typescript:check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix && pnpm run cspell:check && pnpm run typescript:check",
"postinstall": "tsx scripts/build-bin.mts",
"prepublishOnly": "rm -rf dist && tsc --declaration --emitDeclarationOnly --noEmit false --allowJs false -p tsconfig.json && rm -rf dist/scripts && mv dist/src/* dist && rm -rf dist/src && cp src/*.d.ts dist && tsx scripts/create-import-wrappers.mts",
"postpublish": "rm -rf *.d.ts && rm -rf dist && npm run build",
"release": "np",
"docs": "typedoc src/renderer/replugged.ts --excludeExternals",
"docs:watch": "pnpm run docs --watch",
"generate-messages": "tsx scripts/generate-messages.mts && pnpm run build"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/language": "^6.12.2",
"@codemirror/state": "^6.5.4",
"@electron/asar": "^4.0.1",
"@lezer/highlight": "^1.2.3",
"adm-zip": "^0.5.16",
"chalk": "^5.6.2",
"codemirror": "^6.0.2",
"discord-client-types": "^0.0.12",
"esbuild": "^0.27.3",
"esbuild-sass-plugin": "^3.6.0",
"prompts": "^2.4.2",
"semver": "^7.7.4",
"standalone-electron-types": "^34.2.0",
"tsx": "^4.21.0",
"update-notifier": "^7.3.1",
"ws": "^8.19.0",
"yargs": "^18.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@discord/intl": "^0.28.0",
"@discord/intl-loader-core": "^0.28.0",
"@eslint/js": "^9.39.3",
"@marshift/argus": "^1.2.2",
"@types/adm-zip": "^0.5.7",
"@types/lodash": "^4.17.24",
"@types/node": "^25.3.3",
"@types/prompts": "^2.4.9",
"@types/react": "~19.1.17",
"@types/react-dom": "~19.1.11",
"@types/react-reconciler": "^0.33.0",
"@types/semver": "^7.7.1",
"@types/superagent": "^8.1.9",
"@types/update-notifier": "^6.0.8",
"@types/ws": "^8.18.1",
"@types/yargs": "^17.0.35",
"cspell": "^9.7.0",
"discord-types": "^1.3.3",
"eslint": "^9.39.3",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.4.0",
"highlight.js": "^11.11.1",
"moment": "^2.30.1",
"np": "^11.0.2",
"prettier": "^3.8.1",
"simple-markdown": "^0.7.3",
"style-mod": "^4.1.3",
"type-fest": "^5.4.4",
"typedoc": "^0.28.17",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
}
}