forked from overextended/oxmysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "oxmysql",
"version": "2.3.4",
"description": "FXServer to MySQL communication via node-mysql2",
"repository": "git@github.com:overextended/oxmysql.git",
"author": "dunak-debug <19434539+dunak-debug@users.noreply.github.com>",
"license": "LGPL-3.0-or-later",
"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": {
"@citizenfx/server": "^2.0.5132-1",
"@milahu/patch-package": "^6.4.14",
"@types/node": "^17.0.45",
"mysql2": "^2.3.3",
"named-placeholders": "^1.1.2",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1"
},
"devDependencies": {
"esbuild": "^0.14.54",
"lerna": "^4.0.0",
"postinstall-postinstall": "^2.1.0",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.3"
}
}