-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 978 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 978 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
{
"name": "fxserver",
"dependencies": {
"7zip-bin": "^5.2.0",
"@citizenfx/client": "latest",
"@citizenfx/server": "latest",
"@types/bun": "latest",
"@types/node": "^25.6.0",
"@types/node-7z": "^2.1.11",
"@types/unzipper": "^0.10.11",
"commander": "^14.0.3",
"node-7z": "^3.0.0",
"prettier": "^3.8.3",
"typescript": "^6.0.2",
"unzipper": "^0.12.3"
},
"private": true,
"scripts": {
"format": "bun prettier ./scripts package.json -w",
"fx": "bun run scripts/cli --",
"sync": "git submodule sync --recursive && git submodule update --init --recursive --remote",
"build:all": "bun scripts/build.ts"
},
"type": "module",
"bun-create": {
"postinstall": [
"git submodule add -b main https://github.com/overextended/ox_types lua-addons/ox_types",
"git submodule add -b main https://github.com/overextended/fivem-lls-addon lua-addons/fivem-lls-addon"
],
"start": "bun fx start"
}
}