-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 KB
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": "mathost-node",
"version": "1.1.1",
"description": "Moduł NPM służący do komunikowania się z API serwisu MatHost.eu",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.5.0"
},
"scripts": {
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"docs": "typedoc --out docs src/index.ts",
"build": "tsc",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatHost-eu/MatHost-Node.git"
},
"keywords": [
"mathost",
"host",
"pterodactyl",
"api"
],
"author": "MatHost.eu",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/MatHost-eu/MatHost-Node/issues"
},
"homepage": "https://github.com/MatHost-eu/MatHost-Node#readme",
"dependencies": {
"undici": "^5.22.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
}
}