-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "@ohd-tools/rcon",
"version": "0.13.1",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "npx tsc",
"lint": "npx eslint ./src/ --fix && npx prettier ./src/ --write",
"document": "npx typedoc ./src/index.ts --includeVersion --cname ohdrcon.docs.ohd.tools --plugin typedoc-plugin-missing-exports --excludeExternals true --internalModule internal"
},
"keywords": [
"RCON",
"Operation Harsh Doorstop",
"OHD"
],
"author": "bombitmanbomb",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/async": "^3.2.24",
"@types/node": "22.13.9",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"eslint": "9.21.0",
"prettier": "3.5.3",
"typedoc": "0.27.9",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "5.8.2",
"vitest": "^3.0.7"
},
"engines": {
"node": ">=16"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OHD-Tools/OHD-RCON.git"
},
"bugs": {
"url": "https://github.com/OHD-Tools/OHD-RCON/issues"
},
"homepage": "https://github.com/OHD-Tools/OHD-RCON#readme",
"description": "An RCON Interface for Operation: Harsh Doorstop",
"dependencies": {
"@ohd-tools/utils": "0.13.3"
}
}