mapscii/package.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2016-09-18 02:44:31 +02:00
{
"name": "mapscii",
2020-02-18 21:42:14 +01:00
"version": "0.3.1",
"description": "MapSCII is a Braille & ASCII world map renderer for your console, based on OpenStreetMap",
"main": "main.js",
2022-04-29 22:08:49 +02:00
"type": "module",
2016-09-18 02:44:31 +02:00
"scripts": {
2019-10-10 20:54:16 +02:00
"lint": "eslint src",
"start": "node main",
2022-04-29 22:08:49 +02:00
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
2016-09-18 02:44:31 +02:00
},
"repository": {
"type": "git",
"url": "https://github.com/rastapasta/mapscii.git"
},
"bin": {
"mapscii": "./bin/mapscii.sh"
},
"engines": {
"node": ">=10"
},
2016-09-18 02:44:31 +02:00
"keywords": [
"map",
"console",
2016-09-18 02:44:31 +02:00
"terminal",
"ascii",
2016-09-18 02:44:31 +02:00
"osm",
"vectortile",
2016-09-18 02:44:31 +02:00
"mbtiles"
],
"author": "Michael Straßburger <codepoet@cpan.org>",
"license": "MIT",
"dependencies": {
2018-10-17 18:16:24 +02:00
"@mapbox/vector-tile": "^1.3.1",
"bresenham": "0.0.4",
2023-02-26 17:40:17 +01:00
"earcut": "^2.2.4",
2022-04-29 22:08:49 +02:00
"env-paths": "^3.0.0",
2016-09-18 02:44:31 +02:00
"keypress": "^0.2.1",
2023-02-26 17:40:17 +01:00
"node-fetch": "^3.3.0",
2020-02-18 21:41:39 +01:00
"pbf": "^3.2.1",
2019-10-10 19:50:50 +02:00
"rbush": "^3.0.1",
2020-02-18 21:41:39 +01:00
"simplify-js": "^1.2.4",
2022-04-29 22:08:49 +02:00
"string-width": "^5.1.2",
2020-02-18 21:41:39 +01:00
"term-mouse": "^0.2.2",
"x256": "0.0.2",
2023-02-26 17:40:17 +01:00
"yargs": "^17.7.1"
2017-12-23 09:17:51 +01:00
},
"devDependencies": {
2023-02-26 17:40:17 +01:00
"eslint": "^8.35.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.3"
2016-09-18 02:44:31 +02:00
}
}