-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "jsonapi-minecraft",
"version": "1.0.1",
"description": "This TypeScript library makes it easy to communicate with a Minecraft server via the JSONAPI API.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"minecraft",
"api",
"jsonapi",
"server",
"management",
"commands",
"typescript",
"game-server",
"minecraft-server",
"rcon",
"plugin",
"console",
"multiplayer",
"server-api",
"minecraft-plugin",
"node-minecraft",
"server-control",
"minecraft-integration"
],
"author": "Akira13345",
"repository": {
"type": "git",
"url": "https://github.com/Akira13345/jsonapi-minecraft.git"
},
"homepage": "https://github.com/Akira13345/jsonapi-minecraft",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map"
],
"dependencies": {
"@types/node": "^22.5.0",
"axios": "^1.7.5",
"typescript": "^5.5.4"
},
"devDependencies": {
"ts-node": "^10.9.2"
}
}