-
-
Notifications
You must be signed in to change notification settings - Fork 418
/
fxmanifest.lua
48 lines (40 loc) · 1.05 KB
/
fxmanifest.lua
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
48
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
lua54 'yes'
games { 'rdr3', 'gta5' }
rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships.'
name 'ox_lib'
author 'Overextended'
version '3.27.0'
license 'LGPL-3.0-or-later'
repository 'https://github.com/overextended/ox_lib'
description 'A library of shared functions to utilise in other resources.'
dependencies {
'/server:7290',
'/onesync',
}
ui_page 'web/build/index.html'
files {
'init.lua',
'resource/settings.lua',
'imports/**/client.lua',
'imports/**/shared.lua',
'web/build/index.html',
'web/build/**/*',
'locales/*.json',
}
shared_script 'resource/init.lua'
shared_scripts {
'resource/**/shared.lua',
-- 'resource/**/shared/*.lua'
}
client_scripts {
'resource/**/client.lua',
'resource/**/client/*.lua'
}
server_scripts {
'imports/callback/server.lua',
'imports/getFilesInDirectory/server.lua',
'resource/**/server.lua',
'resource/**/server/*.lua',
}