-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (42 loc) · 1.16 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": "vector-tiles-frontend",
"version": "4.0.1",
"description": "Webapplikation til at vise vector tiles med forskellige styles.",
"main": "./public/index.html",
"type": "module",
"scripts": {
"import-assets": "node escopy.js",
"dev": "export NODE_ENV=development && node esbuild.js",
"build": "node escopy.js && export NODE_ENV=production && node esbuild.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SDFIdk/vector_tiles_frontend.git"
},
"keywords": [
"vector tiles",
"KDS"
],
"author": {
"name": "Klimadatastyrelsen",
"email": "[email protected]",
"url": "https://www.klimadatastyrelsen.dk/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SDFIdk/vector_tiles_frontend/issues"
},
"homepage": "https://github.com/SDFIdk/vector_tiles_frontend#readme",
"dependencies": {
"@dataforsyningen/designsystem": "^8.3.0",
"@dataforsyningen/vector_tiles_assets": "^0.2.1",
"ol": "^10.2.1",
"proj4": "^2.12.1",
"ol-mapbox-style": "^12.3.5",
"maplibre-gl": "^4.7.1"
},
"devDependencies": {
"esbuild": "^0.20.2",
"esbuild-plugin-copy": "^2.1.1"
}
}