-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
72 lines (72 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vue-maplibre-gl",
"version": "3.1.3",
"description": "Vue 3 plugin for maplibre-gl",
"keywords": [
"vue",
"vue3",
"vuejs",
"vue3js",
"component",
"vue-component",
"vue3-component",
"maplibre",
"maplibre-gl",
"map",
"maptiler"
],
"author": {
"name": "Volker Nauruhn",
"email": "[email protected]",
"url": "razorness.de"
},
"repository": {
"type": "git",
"url": "https://github.com/razorness/vue-maplibre-gl.git"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "dist/vue-maplibre-gl.umd.js",
"browser": "dist/vue-maplibre-gl.es.js",
"module": "dist/vue-maplibre-gl.es.js",
"types": "dist/main.d.ts",
"files": [
"dist/**/*",
"src/lib/**/*"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"upgrade": "taze major -I"
},
"devDependencies": {
"@babel/types": "^7.23.9",
"@mdi/js": "^7.4.47",
"@types/geojson": "^7946.0.14",
"@types/node": "^20.11.17",
"@vitejs/plugin-vue": "^5.0.4",
"geojson": "^0.5.0",
"maplibre-gl": "^3.6.2",
"mitt": "^3.0.1",
"modular-maptiler-sdk": "^1.0.16",
"sass": "^1.71.0",
"taze": "^0.13.3",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "^3.7.2",
"vue": "^3.4.19",
"vue-tsc": "^1.8.27"
},
"peerDependencies": {
"maplibre-gl": "^3.0.0",
"mitt": "^3.0.0",
"vue": "^3.4.18"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}