forked from razorness/vue-maplibre-gl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.42 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": "1.0.0-beta.26",
"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": "mensch.meier@live.de",
"url": "razorness.de"
},
"repository": {
"type": "git",
"url": "https://github.com/razorness/vue-maplibre-gl.git"
},
"license": "MIT",
"packageManager": "yarn@3.2.3",
"main": "dist/vue-maplibre-gl.ssr.js",
"browser": "dist/vue-maplibre-gl.esm.js",
"module": "dist/vue-maplibre-gl.esm.js",
"unpkg": "dist/vue-maplibre-gl.min.js",
"types": "dist/types/entry.esm.d.ts",
"files": [
"dist/*",
"src/**/*.vue",
"src/css/*"
],
"sideEffects": false,
"scripts": {
"serve": "vite dev --open /dev/index.html",
"build": "vite build",
"prepare": "prettier --write ."
},
"dependencies": {
"mitt": "^3.0.0"
},
"devDependencies": {
"@mdi/js": "^7.0.96",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/compiler-sfc": "^3.2.37",
"maplibre-gl": "^2.3.0",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vite-plugin-dts": "^1.5.0",
"vue": "^3.2.37"
},
"peerDependencies": {
"maplibre-gl": "^2.4.0",
"vue": "^3.2.0"
},
"engines": {
"node": ">=16"
},
"prettier": {
"singleQuote": true,
"endOfLine": "lf",
"useTabs": true
}
}