-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1002 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
42
43
44
45
46
47
{
"name": "tibia-maps",
"version": "5.3.0",
"description": "A command-line utility to convert between binary Tibia maps and human-readable forms of the map data.",
"homepage": "https://mths.be/tibiamaps",
"main": "bin/cli.mjs",
"bin": "bin/cli.mjs",
"keywords": [
"data",
"mmorpg",
"tibia",
"tibia-maps"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/tibiamaps/tibia-maps-script.git"
},
"bugs": "https://github.com/tibiamaps/tibia-maps-script/issues",
"files": [
"LICENSE-MIT.txt",
"bin/",
"src/"
],
"directories": {
"bin": "bin",
"test": "test"
},
"scripts": {
"test": "node test/test.mjs"
},
"dependencies": {
"argh": "^1.0.0",
"canvas": "^2.6.1",
"glob": "^7.1.6",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"tibia-count-walkable-tiles": "^2.0.0",
"tibia-minimap-png": "^2.0.0",
"utf8": "^3.0.0",
"windows-1252": "^1.0.0"
}
}