-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@indoorequal/vue-maplibre-gl",
"version": "9.0.1",
"description": "Vue 3 plugin for maplibre-gl",
"keywords": [
"vue",
"vue3",
"vuejs",
"vue3js",
"component",
"vue-component",
"vue3-component",
"maplibre",
"maplibre-gl",
"map"
],
"author": "François de Metz <francois@2metz.fr>",
"repository": {
"type": "git",
"url": "https://github.com/indoorequal/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",
"web-types": "dist/web-types.json",
"files": [
"dist/**/*",
"lib/**/*"
],
"scripts": {
"build": "vue-tsc --noEmit && vite build && vue-docgen-web-types --configFile web-types.config.cjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint lib",
"prettier": "prettier lib test --write",
"test": "vitest"
},
"devDependencies": {
"@babel/types": "^8.0.0",
"@eslint/js": "^10.0.0",
"@indoorequal/vue-maplibre-gl": "workspace:^",
"@maplibre/maplibre-gl-inspect": "^1.7.0",
"@mdi/js": "^7.4.47",
"@types/geojson": "^7946.0.14",
"@types/node": "^24.0.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vitest/browser-playwright": "^4.1.10",
"eslint": "^10.0.0",
"eslint-plugin-vue": "^10.0.0",
"geojson": "^0.5.0",
"glob": "^13.0.0",
"globals": "^17.0.0",
"maplibre-gl": "^6.0.0",
"playwright": "^1.62.1",
"prettier": "3.9.6",
"sass": "^1.71.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^8.0.0",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^5.0.0",
"vitepress": "^1.1.3",
"vitest": "^4.1.10",
"vitest-browser-vue": "^2.1.0",
"vue": "^3.4.19",
"vue-docgen-api": "^4.78.0",
"vue-docgen-web-types": "^0.1.8",
"vue-eslint-parser": "^10.1.1",
"vue-tsc": "^3.0.0"
},
"peerDependencies": {
"maplibre-gl": "^6.0.0",
"vue": "^3.4.18"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.18.0"
}