forked from overextended/ox_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxmanifest.lua
51 lines (44 loc) · 956 Bytes
/
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
49
50
51
--[[ FX Information ]]--
fx_version 'cerulean'
use_fxv2_oal 'yes'
lua54 'yes'
game 'gta5'
--[[ Resource Information ]]--
name 'ox_core'
version '0.0.2'
description 'What have I done?'
license 'GPL-3.0-or-later'
author 'overextended'
repository 'https://github.com/overextended/ox_core'
--[[ Manifest ]]--
dependencies {
'/server:5104',
'/onesync',
}
shared_scripts {
'@ox_lib/init.lua',
'shared/**.lua',
}
client_scripts {
'client/init.lua',
'client/spawn.lua',
'client/death.lua',
'client/main.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'@ox_groups/server/groups.lua',
'@ox_accounts/server/accounts.lua',
'server/init.lua',
'server/functions.lua',
'server/classes/player.lua',
'server/commands.lua',
'server/main.lua',
}
ui_page 'web/build/index.html'
files {
'web/build/index.html',
'web/build/**/*',
'imports.lua',
'client/import.lua',
}