-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 931 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
37
38
39
40
41
{
"name": "mojang-minecraft-api",
"version": "1.0.2",
"description": "🎮 Wrapper for the Mojang API",
"main": "lib/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"types": "lib",
"scripts": {
"build": "tsc -p .",
"doc": "jsdoc2md lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/DaanKorver/mojang-minecraft-api.git"
},
"keywords": [
"mojang",
"minecraft",
"async",
"promise",
"api"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DaanKorver/mojang-minecraft-api/issues"
},
"homepage": "https://github.com/DaanKorver/mojang-minecraft-api#readme",
"devDependencies": {
"@types/node": "^14.14.41",
"jsdoc-to-markdown": "^7.0.1",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.1",
"canvas": "^2.7.0",
"image-clipper": "^0.4.4"
}
}