-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 891 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 891 Bytes
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
{
"name": "cyclemaps",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc --build && rollup --config --environment BUILD:dev",
"build-production": "tsc --build && rollup --config --environment BUILD:production"
},
"dependencies": {
"@maplibre/maplibre-gl-directions": "^0.9.1",
"@types/geojson": "^7946.0.16",
"@types/js-cookie": "^3.0.6",
"js-cookie": "^3.0.5",
"maplibre-gl": "^5.19.0",
"maplibre-gl-vector-text-protocol": "^0.0.5",
"pmtiles": "^4.4.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^25.3.0",
"dotenv": "^17.3.1",
"rollup": "^4.59.0",
"rollup-plugin-dotenv": "^0.5.1",
"rollup-plugin-import-css": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}