forked from CommunityOx/ox_target
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
50 lines (42 loc) · 849 Bytes
/
fxmanifest.lua
File metadata and controls
50 lines (42 loc) · 849 Bytes
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
-- FX Information
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
nui_callback_strict_mode 'true'
lua54 'yes'
game 'gta5'
-- Resource Information
name 'ox_target'
author 'Overextended'
version '1.17.3'
repository 'https://github.com/TheOrderFivem/ox_target'
description ''
-- Manifest
ui_page 'web/index.html'
shared_scripts {
'@ox_lib/init.lua',
}
client_scripts {
'client/main.lua',
}
server_scripts {
'server/main.lua'
}
files {
'web/**',
'locales/*.json',
'client/api.lua',
'client/utils.lua',
'client/state.lua',
'client/debug.lua',
'client/defaults.lua',
'client/framework/nd.lua',
'client/framework/ox.lua',
'client/framework/esx.lua',
'client/framework/qbx.lua',
'client/framework/qb.lua',
'client/compat/qtarget.lua',
'client/compat/qb-target.lua',
}
provide 'qtarget'
provide 'qb-target'
dependency 'ox_lib'