-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
52 lines (52 loc) · 1.25 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
52
{
"name": "@overextended/ox_core",
"author": "Overextended",
"version": "1.2.2",
"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": {
"build": "node build.js",
"watch": "node build.js --watch",
"prettier": "prettier ./{client,common,server,lib}/**/*.{ts,ts} --write"
},
"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",
"@overextended/fx-utils": "^0.0.4",
"@types/node": "^20.16.10",
"esbuild": "^0.23.1",
"prettier": "^3.3.3",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.2"
},
"dependencies": {
"@nativewrappers/fivem": "^0.0.41",
"@overextended/ox_lib": "^3.26.0",
"mariadb": "^3.3.2"
},
"engines": {
"node": ">=16.9.1"
}
}