-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "oxmysql",
"version": "2.12.0",
"description": "FXServer to MySQL communication via node-mysql2",
"repository": {
"type": "git",
"url": "https://github.com/overextended/oxmysql.git"
},
"bugs": "https://github.com/overextended/oxmysql/issues",
"author": "Overextended",
"license": "LGPL-3.0-or-later",
"type": "module",
"main": "lib/MySQL.js",
"types": "lib/MySQL.d.ts",
"files": [
"lib/MySQL.js",
"lib/MySQL.d.ts"
],
"scripts": {
"build": "pnpm build:root && lerna run build",
"build:root": "node build.js && cd lib && tsc",
"watch": "esbuild --watch --bundle --platform=node --target=node16.9.1 src/index.ts --outfile=dist/build.js",
"lib": "tsc --project lib/tsconfig.lib.json",
"bootstrap": "lerna bootstrap",
"postinstall": "patch-package && pnpm bootstrap"
},
"dependencies": {
"mysql2": "3.11.3",
"named-placeholders": "^1.1.3",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@citizenfx/server": "2.0.5132-1",
"@milahu/patch-package": "^6.4.14",
"@types/node": "^22.7.4",
"esbuild": "^0.21.5",
"lerna": "^4.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.3.3",
"pretty-quick": "^3.3.1",
"typescript": "^5.6.2"
}
}