forked from osm-americana/openstreetmap-americana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "openstreetmap-americana",
"version": "0.1.0",
"description": " A quintessentially American map style.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/zelonewolf/openstreetmap-americana.git"
},
"scripts": {
"config": "shx cp src/configs/config.maptiler.js src/config.js",
"code_format": "run-s code_format:prettier code_format:svgo",
"code_format:prettier": "prettier --write .",
"code_format:svgo": "svgo -f icons/",
"clean": "shx rm -rf dist .parcel-cache",
"presprites": "shx rm -rf dist/sprites",
"sprites": "node scripts/sprites.js",
"status_map": "node scripts/status_map.js",
"taginfo": "node scripts/taginfo.js",
"start": "run-s clean sprites serve",
"serve": "parcel src/index.html --open --port 1776",
"build:code": "parcel build src/index.html --public-url ./",
"build": "run-s clean sprites build:code taginfo status_map"
},
"dependencies": {
"@basemaps/sprites": "^6.28.1",
"glob": "^8.0.3",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"maplibre-gl": "^2.1.9",
"openmapsamples-maplibre": "github:adamfranco/OpenMapSamples-MapLibre",
"parcel": "^2.3.0",
"prettier": "2.3.2",
"shx": "^0.3.4",
"svgo": "^2.8.0"
},
"engines": {
"npm": ">=8.3.0"
}
}