-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
103 lines (103 loc) · 3.6 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
{
"name": "replugged",
"version": "4.8.2",
"description": "A lightweight @discord client mod focused on simplicity and performance",
"license": "MIT",
"main": "dist/main.mjs",
"types": "dist/renderer/replugged.d.ts",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "[email protected]",
"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 -p tsconfig.json --outDir dist && 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"
},
"repository": "https://github.com/replugged-org/replugged.git",
"author": "Replugged",
"bugs": {
"url": "https://github.com/replugged-org/replugged/issues"
},
"devDependencies": {
"@discord/intl": "^0.13.1",
"@discord/intl-loader-core": "^0.13.1",
"@marshift/argus": "^1.2.1",
"@types/adm-zip": "^0.5.6",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.6",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-reconciler": "^0.28.8",
"@types/semver": "^7.5.8",
"@types/superagent": "^8.1.9",
"@types/update-notifier": "^6.0.8",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cspell": "^8.16.0",
"discord-types": "^1.3.3",
"eslint": "^8.57.1",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"highlight.js": "^11.10.0",
"moment": "^2.30.1",
"np": "^10.0.7",
"prettier": "^3.3.3",
"simple-markdown": "^0.7.3",
"style-mod": "^4.1.2",
"type-fest": "^4.26.1",
"typedoc": "^0.26.11",
"typescript": "~5.4.5"
},
"files": [
"dist",
"bin",
"scripts",
"*.d.ts",
"src/util.mts"
],
"dependencies": {
"@codemirror/lang-css": "^6.3.0",
"@codemirror/language": "^6.10.3",
"@codemirror/state": "^6.4.1",
"@electron/asar": "^3.2.17",
"@lezer/highlight": "^1.2.1",
"adm-zip": "^0.5.16",
"chalk": "^5.3.0",
"codemirror": "^6.0.1",
"esbuild": "^0.24.0",
"esbuild-sass-plugin": "^3.3.1",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"standalone-electron-types": "^1.0.0",
"tsx": "^4.19.2",
"update-notifier": "^7.3.1",
"ws": "^8.18.0",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"bin": {
"replugged": "bin.mjs"
}
}