forked from overextended/ox_inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fxmanifest.lua
47 lines (40 loc) · 841 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
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
lua54 'yes'
game 'gta5'
name 'ox_inventory'
author 'Overextended'
version '2.42.3'
repository 'https://github.com/overextended/ox_inventory'
description 'Slot-based inventory with item metadata support'
dependencies {
'/server:6116',
'/onesync',
'oxmysql',
'ox_lib',
}
shared_script '@ox_lib/init.lua'
ox_libs {
'locale',
'table',
'math',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'init.lua'
}
client_script 'init.lua'
ui_page 'web/build/index.html'
files {
'client.lua',
'server.lua',
'locales/*.json',
'web/build/index.html',
'web/build/assets/*.js',
'web/build/assets/*.css',
'web/images/*.png',
'modules/**/shared.lua',
'modules/**/client.lua',
'modules/bridge/**/client.lua',
'data/*.lua',
}