-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 646 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "themap.is",
"type": "module",
"version": "0.0.1",
"scripts": {
"build": "rm -rf dist/ && mkdir -p dist/ && npm run build_icons && npm run build_data && cp -a node_modules/maplibre-gl/dist/. dist/maplibre/ && cp -a node_modules/potpack/. dist/potpack/",
"serve": "node ./serve.js",
"build_data": "node ./scripts/build_data.js",
"build_icons": "cp -rf node_modules/@waysidemapping/pinhead/dist/icons dist/icons"
},
"dependencies": {
"@waysidemapping/pinhead": "~15.21.0",
"chroma-js": "^3.2.0",
"maplibre-gl": "~5.24.0",
"potpack": "~2.1.0"
}
}