-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "phibi-bot",
"version": "1.0.0",
"description": "Phibi Bot",
"type": "module",
"private": true,
"scripts": {
"build": "bun run build:bundle",
"build:bundle": "bun build --target bun --format esm --minify --outdir ./dist/ ./src/index.ts",
"start": "NODE_ENV=production bun src/index.ts",
"dev": "NODE_ENV=development bun src/index.ts",
"production:build": "bun run build:standalone",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome check --write .",
"lint:tsc": "bun tsc --noEmit"
},
"keywords": ["Phibi Bot"],
"author": "tnfAngel",
"license": "GPL-2.0-only",
"dependencies": {
"@napi-rs/canvas": "0.1.59",
"colors": "^1.4.0",
"discord.js": "^14.16.3",
"mongoose": "^8.9.2",
"tslib": "^2.8.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"typescript": "^5.7.2",
"@biomejs/biome": "^1.9.4"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/tnfAngel-Development/Phibi-bot.git"
},
"bugs": {
"url": "https://github.com/tnfAngel-Development/Phibi-bot/issues"
},
"homepage": "https://github.com/tnfAngel-Development/Phibi-bot#readme",
"trustedDependencies": ["@biomejs/biome"]
}