-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "@eco.js/rcon",
"version": "0.0.2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "commonjs",
"access": "public",
"scripts": {
"build": "npx tsc",
"lint": "npx eslint ./src/ --fix && npx prettier ./src/ --write",
"document": "npx typedoc ./src/index.ts --includeVersion"
},
"keywords": [
"RCON",
"ECO"
],
"author": "bombitmanbomb",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"typedoc": "^0.26.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecojs/rcon.git"
},
"bugs": {
"url": "https://github.com/ecojs/rcon/issues"
},
"homepage": "https://github.com/ecojs/rcon#readme",
"description": "An RCON Interface for ECO"
}