-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.2 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
{
"name": "@openhistoricalmap/embed",
"version": "1.0.0",
"description": "Embeddable map of OpenHistoricalMap",
"main": "index.js",
"scripts": {
"build": "npm run build:copy && esbuild index.js --bundle --outdir=dist",
"build:copy": "mkdir -p dist && cp index.html node_modules/@mapbox/mapbox-gl-rtl-text/dist/mapbox-gl-rtl-text.js dist",
"start": "npm run build:copy && open 'http://127.0.0.1:8000/#map=15/29.9599/-90.0676&date=1900-01-01' && esbuild index.js --bundle --outdir=dist --servedir=dist --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenHistoricalMap/openhistoricalmap-embed.git"
},
"keywords": [
"openhistoricalmap",
"embed"
],
"author": "OpenHistoricalMap",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/OpenHistoricalMap/openhistoricalmap-embed/issues"
},
"homepage": "https://github.com/OpenHistoricalMap/openhistoricalmap-embed#readme",
"devDependencies": {
"esbuild": "^0.24.2",
"shx": "^0.3.4"
},
"dependencies": {
"@mapbox/mapbox-gl-language": "^1.0.1",
"@mapbox/mapbox-gl-rtl-text": "^0.3.0",
"@openhistoricalmap/maplibre-gl-dates": "^1.2.0",
"maplibre-gl": "^5.0.1"
}
}