forked from BetterDiscord/BetterDiscord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.62 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
{
"name": "betterdiscord",
"version": "1.12.1",
"description": "Enhances Discord by adding functionality and themes.",
"type": "module",
"scripts": {
"build": "bun scripts/build.ts",
"watch": "bun scripts/build.ts --watch",
"build:main": "bun run build --module=main",
"build:preload": "bun run build --module=preload",
"build:betterdiscord": "bun run build --module=betterdiscord",
"build:production": "bun run build --minify",
"inject": "bun scripts/inject.js",
"lint": "bun run --bun eslint",
"lint-css": "stylelint src/betterdiscord/styles/*.css && stylelint src/betterdiscord/styles/**/*.css",
"test": "bun test tests/",
"dist": "bun run build:production && bun scripts/pack.js",
"api": "bun run --bun jsdoc -X -r renderer/src/modules/api/ > dist/jsdoc-ast.json",
"translations": "bun -r dotenv/config scripts/translations.js"
},
"devDependencies": {
"@electron/asar": "^3.2.0",
"@types/bun": "^1.2.2",
"@types/eslint": "^9.6.1",
"bun-style-loader": "^0.4.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0-canary-9ff42a87-20250130",
"globals": "^15.14.0",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^24.0.0",
"typescript-eslint": "^8.22.0"
},
"dependencies": {
"buffer": "^6.0.3",
"clsx": "^2.1.1",
"lucide-react": "^0.474.0"
},
"engines": {
"bun": ">=1.2"
}
}