This repository was archived by the owner on Dec 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.5 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
{
"name": "phibi-bot",
"version": "1.0.0",
"description": "Phibi Bot",
"type": "module",
"private": true,
"scripts": {
"build": "bun run build:bundle",
"build:bundle": "NODE_ENV=production bun run generateExports && bun build --target bun --format esm --minify --outdir ./dist/ ./src/index.ts",
"build:standalone": "NODE_ENV=production bun run generateExports && bun build --compile --target bun --format esm --minify --outfile ./dist/phibi ./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",
"generateExports": "NODE_ENV=production bun run src/scripts/generateExports.ts"
},
"keywords": ["Phibi Bot"],
"author": "tnfAngel",
"license": "GPL-2.0-only",
"dependencies": {
"@napi-rs/canvas": "0.1.59",
"colors": "^1.4.0",
"discord.js": "14.25.1",
"mongoose": "^8.20.4",
"tslib": "^2.8.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"typescript": "^5.9.3",
"@biomejs/biome": "^1.9.4"
},
"packageManager": "bun@1.1.39",
"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"]
}