forked from overextended/ox_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.19 KB
/
package.json
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
{
"name": "@overextended/ox_core",
"author": "Overextended",
"version": "0.29.1",
"license": "LGPL-3.0-or-later",
"description": "A modern FiveM framework.",
"type": "module",
"files": [
"./tsconfig.json",
"./package/**/*.js",
"./package/**/*.d.ts"
],
"exports": {
".": "./package/lib/index.js",
"./client": "./package/lib/client/index.js",
"./server": "./package/lib/server/index.js"
},
"scripts": {
"prepare": "tsc --build && tsc-alias",
"build": "node build.js --mode=production",
"watch": "node build.js"
},
"keywords": [
"fivem",
"ox_core",
"ox",
"overextended"
],
"repository": {
"type": "git",
"url": "https://github.com/overextended/ox_core.git"
},
"bugs": "https://github.com/overextended/ox_core/issues",
"devDependencies": {
"@citizenfx/client": "latest",
"@citizenfx/server": "latest",
"@types/node": "^20.16.1",
"esbuild": "^0.23.1",
"prettier": "^3.3.3",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4"
},
"dependencies": {
"@nativewrappers/fivem": "^0.0.41",
"@overextended/ox_lib": "^3.25.0",
"mariadb": "^3.3.1"
},
"engines": {
"node": ">=16.9.1"
}
}