-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 896 Bytes
/
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
{
"name": "minecraft-query",
"version": "1.0.13",
"description": "A Node.js implementation of Minecraft's query protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist/ && tsc",
"dev": "nodemon --watch \"./src/**/*.ts\" --exec \"ts-node\" ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilianomaccaferri/query.git"
},
"keywords": [
"Minecraft",
"Query",
"data",
"players",
"online",
"players",
"MOTD"
],
"author": "Emiliano Maccaferri",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/emilianomaccaferri/query/issues"
},
"homepage": "https://github.com/emilianomaccaferri/query#readme",
"devDependencies": {
"nodemon": "^2.0.20",
"rimraf": "^4.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}