-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 915 Bytes
/
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
{
"name": "@tnfangel-chat/gateway",
"version": "1.0.0",
"description": "tnfAngel Chat Gateway Service",
"type": "module",
"private": true,
"scripts": {
"build": "bun run build:bundle",
"build:bundle": "bun build --target bun --format esm --minify --outdir ./dist/ ./src/index.ts",
"build:standalone": "bun build --compile --target bun --format esm --minify --outfile ./dist/aurora ./src/index.ts",
"start": "bun run build && bun ./dist/index.js",
"dev": "NODE_ENV=development bun --hot src/index.ts",
"production:build": "bun run build:standalone",
"lint": "bunx --bun @biomejs/biome check --apply ."
},
"author": "tnfAngel",
"dependencies": {
"socket.io": "^4.7.5",
"tslib": "^2.6.2"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/bun": "^1.1.3",
"typescript": "5.4.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}