-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.47 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "alpine-mtb-map",
"version": "0.0.1",
"private": true,
"description": "Mountain biking spots across the Alps & beyond, with travel times, lift prices and what the trails are like",
"type": "module",
"scripts": {
"dev": "vp dev",
"build": "vp build",
"preview": "vp preview",
"prepare": "vp config"
},
"dependencies": {
"@maplibre/maplibre-gl-leaflet": "^0.1.3",
"@tmcw/togeojson": "^7.1.2",
"fflate": "^0.8.3",
"leaflet": "^1.9.4",
"maplibre-gl": "^5.24.0"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@xmldom/xmldom": "^0.9.10",
"git-cliff": "^2.13.1",
"release-it": "^21.0.1",
"vite-plugin-pwa": "^1.3.0",
"vite-plus": "0.2.6"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": ">=12.0.1",
"onFail": "download"
}
},
"engines": {
"node": ">=22.18.0"
},
"allowScripts": {
"fsevents@2.3.3": true
},
"release-it": {
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}",
"tagAnnotation": "v${version}",
"changelog": "git-cliff --unreleased --strip all"
},
"npm": {
"publish": false
},
"github": {
"release": false
},
"hooks": {
"after:bump": "git-cliff --tag v${version} --output CHANGELOG.md"
}
}
}