-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1011 Bytes
/
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
44
{
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "vue-tsc"
},
"dependencies": {
"@vueuse/core": "^11.0.3",
"calendar-link": "^2.7.0",
"leaflet": "^1.9.4",
"osmtogeojson": "3.0.0-beta.5",
"vue": "^3.4.37"
},
"devDependencies": {
"@antfu/eslint-config": "2.25.1",
"@iconify-json/ph": "1.1.14",
"@types/leaflet": "1.9.12",
"eslint": "9.9.0",
"eslint-plugin-format": "0.1.2",
"husky": "9.1.4",
"lint-staged": "15.2.8",
"typescript": "5.5.4",
"unplugin-icons": "0.19.2",
"unplugin-vue-components": "0.27.4",
"vite": "5.4.3",
"vitepress": "1.3.2",
"vue-tsc": "2.1.2"
},
"imports": {
"#*": "./*"
},
"lint-staged": {
"*": "eslint --no-warn-ignored --fix"
}
}