-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
54 lines (54 loc) · 1.44 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
53
54
{
"name": "mta-discord-rpc",
"version": "0.1.2",
"description": "External MTA Discord Rich Presence Manager",
"main": "src/main.ts",
"engines": {
"node": ">= 14.15 <15"
},
"devDependencies": {
"@types/discord-rpc": "^3.0.4",
"@types/fs-extra": "^9.0.6",
"@types/node": "^14.14.21",
"@types/tail": "^2.0.0",
"@types/xml2js": "^0.4.7",
"@typescript-eslint/eslint-plugin": "~4.12.0",
"@typescript-eslint/parser": "~4.12.0",
"bufferpack": "^0.0.6",
"eslint": "~7.17.0",
"eslint-config-prettier": "~7.1.0",
"nexe": "^4.0.0-beta.16",
"prettier": "~2.2.1",
"rcedit": "^3.0.0",
"rimraf": "~3.0.2",
"ts-node": "^9.1.1",
"tsutils": "~3.18.0",
"typescript": "~4.1.3"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "yarn clean && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"dev": "ts-node .",
"release": "node release.js",
"lint": "eslint . --ext .ts,.tsx"
},
"author": "pkfln",
"license": "MIT",
"dependencies": {
"@types/debounce": "^1.2.0",
"@types/gamedig": "^2.0.1",
"debounce": "^1.2.0",
"dgram-as-promised": "^5.0.1",
"discord-rpc": "^3.1.4",
"execa": "^5.0.0",
"fs-extra": "^9.0.1",
"gamedig": "^2.0.25",
"got": "^11.8.1",
"tasklist": "^4.0.1",
"tslib": "~2.0.3",
"tslog": "^3.1.0",
"xml2js": "^0.4.23"
}
}