forked from overextended/ox_inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fxmanifest.lua
45 lines (38 loc) · 838 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
--[[ FX Information ]] --
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
lua54 'yes'
game 'gta5'
--[[ Resource Information ]] --
name 'ox_inventory'
author 'Overextended'
version '2.26.3'
repository 'https://github.com/overextended/ox_inventory'
description 'Slot-based inventory with item metadata support'
--[[ Manifest ]] --
dependencies {
'/server:6116',
'/onesync',
'oxmysql',
'ox_lib',
}
shared_script '@ox_lib/init.lua'
server_scripts {
'@oxmysql/lib/MySQL.lua',
'modules/init.lua'
}
client_script 'modules/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',
}