-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 861 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 861 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
30
31
32
33
{
"name": "bluglo-stw",
"version": "1.0.0",
"description": "A Fortnite STW taxibot manager with a real-time web dashboard and interactive CLI.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint . --fix",
"format": "bunx prettier . --write",
"format:check": "bunx prettier . --check",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"fnbr": "^4.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.11",
"@types/node": "^24.5.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsx": "^4.19.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
}
}