forked from overextended/oxmysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.28 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.1",
"description": "FXServer to MySQL communication via node-mysql2",
"repository": "[email protected]:overextended/oxmysql.git",
"author": "dunak-debug <[email protected]>",
"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": "esbuild --bundle --platform=node --target=node16.9.1 src/index.ts --outfile=dist/build.js",
"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",
"@types/node": "^17.0.32",
"mysql2": "^2.3.3",
"named-placeholders": "^1.1.2",
"node-fetch": "^3.2.4",
"prettier": "^2.6.2"
},
"devDependencies": {
"@tellus/patch-package-with-pnpm-support": "github:Tellus/patch-package-with-pnpm-support",
"esbuild": "^0.14.39",
"lerna": "^4.0.0",
"postinstall-postinstall": "^2.1.0",
"pretty-quick": "^3.1.3",
"typescript": "^4.6.4"
}
}