-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "minecraftstatuspinger",
"repository": {
"type": "git",
"url": "https://github.com/woodendoors7/MinecraftStatusPinger.git"
},
"files": [
"dist",
"CHANGELOG.md",
"README.md"
],
"version": "1.1.5",
"description": "The best modern library for getting the ping and status of Minecraft servers, written in TypeScript with zero dependencies.",
"keywords": [
"minecraft status",
"minecraft ping",
"minecraft server",
"motd",
"minecraft"
],
"author": "woodendoors_7",
"homepage": "https://pinger.floppa.hair/",
"bugs": {
"url": "https://github.com/woodendoors7/MinecraftStatusPinger/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "cls && tsc && cd test && tsc --target ES2021 --strictNullChecks true --moduleResolution node test.ts && node test.js",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"dev": "ts-node-dev src/index.ts"
},
"engines": {
"node": ">=16.0.0"
},
"license": "GPL-3.0-or-later",
"type": "module",
"devDependencies": {
"@types/express": "^4.17.16",
"@types/node": "^18.11.18",
"@types/varint": "^6.0.1",
"typedoc": "^0.23.25",
"typescript": "^4.9.4"
}
}