lr_boilerplate/fxmanifest.lua
Lorraxs 2b8448e1be modified: fxmanifest.lua
deleted:    main.obf.lua
new file:   server/utils.lua
modified:   web/public/assets/bg.png
modified:   web/src/types/redux.type.ts
modified:   web/src/utils/fetchNui.ts
modified:   web/src/utils/misc.ts
2024-02-05 18:31:04 +07:00

47 lines
625 B
Lua

fx_version "cerulean"
description "Small script for FiveM"
author "Lorraxs"
version '1.0.0'
repository 'https://github.com/Lorraxs/lr_addon'
dependencies {
'/server:6116',
'/onesync',
'oxmysql',
'ox_lib',
}
lua54 'yes'
games {
"gta5",
"rdr3"
}
files {
'web/build/index.html',
'web/build/**/*',
}
ui_page 'web/build/index.html'
shared_scripts {
'@ox_lib/init.lua',
"config.lua",
"main.lua",
"impl.lua",
}
client_scripts {
"client/utils.lua",
"client/classes/*",
"client/impl/*"
}
server_script {
"server/utils.lua",
'@oxmysql/lib/MySQL.lua',
"server/classes/*",
"server/impl/*"
}