-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "protomaps-ghpages",
"version": "1.0.0",
"description": "A simple Github Pages hosted protomaps tiles extract and styles for easy self-hosting of smallish maps.",
"main": "build.mjs",
"scripts": {
"build": "npm run build:tiles && npm run build:styles && npm run build:index",
"build:index": "cp index.html dist/index.html",
"build:tiles": "node buildTiles.mjs",
"build:styles": "node buildStyles.mjs",
"build:styles:dev": "TILE_JSON=pmtiles://http://localhost:8080/tiles.pmtiles node buildStyles.mjs",
"format": "prettier --write *.mjs index.html README.md",
"start": "http-server dist --cors -c-1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maprva/protomaps.git"
},
"keywords": [
"openstreetmap",
"osm",
"maplibre",
"protomaps",
"pmtiles"
],
"author": "MapRVA",
"license": "BSD",
"bugs": {
"url": "https://github.com/maprva/protomaps-ghpages/issues"
},
"homepage": "https://github.com/maprva/protomaps-ghpages#readme",
"dependencies": {
"@mapbox/geo-viewport": "^0.5.0",
"@turf/bbox": "^7.2.0",
"@turf/mask": "^7.2.0",
"@turf/simplify": "^7.2.0",
"protomaps-themes-base": "^4.3.1"
},
"devDependencies": {
"http-server": "^14.1.1",
"prettier": "^3.4.2"
}
}