-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 908 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 908 Bytes
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": "@harmony/events",
"version": "1.0.0",
"description": "Harmony Events Service",
"type": "module",
"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/events ./src/index.ts",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome check --write .",
"lint:tsc": "bun tsc --noEmit",
"start": "bun run build && bun ./dist/index.js",
"dev": "NODE_ENV=development bun --hot src/index.ts"
},
"author": "tnfAngel",
"dependencies": {
"socket.io": "^4.8.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.19",
"typescript": "5.7.2"
},
"trustedDependencies": [
"@biomejs/biome"
]
}