-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.1 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
46
47
{
"name": "fnlb",
"version": "1.1.21",
"author": "FNLB",
"main": "dist/index.js",
"homepage": "https://fnlb.net",
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@types/bun": "^1.4.0",
"@types/node": "^26.4.1",
"bun-plugin-dts": "^0.3.0",
"typescript": "^6.0.3"
},
"overrides": {
"typescript": "^6.0.3"
},
"description": "Easily run your own bot using FNLB, a powerful and scalable system for managing Fortnite bots.",
"files": [
"dist"
],
"keywords": [
"fnlb",
"fortnite",
"lobbybot",
"self-host",
"botlobbies"
],
"license": "ISC",
"packageManager": "bun@1.1.17",
"scripts": {
"build": "bun run src/build.ts",
"prepublishOnly": "bun run lint && bun run build --env=disable",
"test:node": "bun run build && node test/node.js",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bunx --bun @biomejs/biome check --write .",
"lint:tsc": "bun tsc --noEmit",
"test": "bun run lint && bun test"
},
"trustedDependencies": [
"@biomejs/biome"
],
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@fnlb-project/shared": "^1.5.171"
}
}