-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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": "eco.js",
"version": "1.6.2-rc.1",
"type": "module",
"main": "./lib/index.mjs",
"module": "./lib/index.mjs",
"types": "./types/index.d.mts",
"access": "public",
"scripts": {
"build": "tsc",
"lint": "npx eslint ./src/ --fix && prettier ./src --write",
"document": "npx typedoc ./src/index.mts --includeVersion --plugin typedoc-plugin-missing-exports --excludeExternals true --internalModule internal",
"test": "vitest"
},
"keywords": [
"RCON",
"ECO",
"API"
],
"author": "bombitmanbomb",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/node": "20.16.11",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"dotenv": "16.4.5",
"eslint": "9.12.0",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"tsup": "8.3.0",
"typedoc": "0.26.10",
"typedoc-material-theme": "1.1.0",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "5.6.3",
"vitest": "2.1.3"
},
"engines": {
"node": ">=18"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecojs/eco.js.git"
},
"bugs": {
"url": "https://github.com/ecojs/eco.js/issues"
},
"homepage": "https://github.com/ecojs/eco.js#readme",
"description": "A programatic Interface for ECO game servers"
}