@geoql/v-maplibre 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +38 -41
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geoql/v-maplibre",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Vue 3 components for MapLibre GL - reactive map components with full TypeScript support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,54 +17,36 @@
|
|
|
17
17
|
"files": [
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"dev": "vite",
|
|
22
|
-
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist",
|
|
23
|
-
"preview": "vite preview",
|
|
24
|
-
"test": "vitest",
|
|
25
|
-
"test:ui": "vitest --ui",
|
|
26
|
-
"test:coverage": "vitest --coverage",
|
|
27
|
-
"lint": "oxlint",
|
|
28
|
-
"lint:fix": "oxlint --fix",
|
|
29
|
-
"format": "prettier --write .",
|
|
30
|
-
"format:check": "prettier --check .",
|
|
31
|
-
"docs:dev": "nuxi dev docs",
|
|
32
|
-
"docs:build": "nuxi generate docs",
|
|
33
|
-
"docs:preview": "nuxi preview docs",
|
|
34
|
-
"prepare": "husky",
|
|
35
|
-
"release": "release-it",
|
|
36
|
-
"prepublishOnly": "pnpm run lint && pnpm run format:check && pnpm run test:coverage && pnpm run build"
|
|
37
|
-
},
|
|
38
20
|
"peerDependencies": {
|
|
39
21
|
"vue": "^3.5.0"
|
|
40
22
|
},
|
|
41
23
|
"dependencies": {
|
|
42
|
-
"maplibre-gl": "^5.
|
|
43
|
-
"pmtiles": "^4.
|
|
24
|
+
"maplibre-gl": "^5.13.0",
|
|
25
|
+
"pmtiles": "^4.3.0"
|
|
44
26
|
},
|
|
45
27
|
"devDependencies": {
|
|
46
|
-
"@awmottaz/prettier-plugin-void-html": "^1.
|
|
47
|
-
"@commitlint/cli": "^
|
|
48
|
-
"@commitlint/config-conventional": "^
|
|
28
|
+
"@awmottaz/prettier-plugin-void-html": "^1.9.0",
|
|
29
|
+
"@commitlint/cli": "^20.1.0",
|
|
30
|
+
"@commitlint/config-conventional": "^20.0.0",
|
|
49
31
|
"@nuxt-themes/docus": "^1.15.1",
|
|
50
|
-
"@release-it/conventional-changelog": "^
|
|
51
|
-
"@types/node": "^
|
|
52
|
-
"@vitejs/plugin-vue": "^
|
|
53
|
-
"@vitest/coverage-v8": "^
|
|
54
|
-
"@vitest/ui": "^
|
|
32
|
+
"@release-it/conventional-changelog": "^10.0.2",
|
|
33
|
+
"@types/node": "^24.10.1",
|
|
34
|
+
"@vitejs/plugin-vue": "^6.0.2",
|
|
35
|
+
"@vitest/coverage-v8": "^4.0.13",
|
|
36
|
+
"@vitest/ui": "^4.0.13",
|
|
55
37
|
"@vue/test-utils": "^2.4.6",
|
|
56
|
-
"happy-dom": "^
|
|
38
|
+
"happy-dom": "^20.0.10",
|
|
57
39
|
"husky": "^9.1.7",
|
|
58
|
-
"lint-staged": "^
|
|
59
|
-
"nuxt": "^
|
|
40
|
+
"lint-staged": "^16.2.7",
|
|
41
|
+
"nuxt": "^4.2.1",
|
|
60
42
|
"oxlint": "^1.30.0",
|
|
61
|
-
"prettier": "^3.
|
|
62
|
-
"release-it": "^
|
|
63
|
-
"typescript": "^5.
|
|
64
|
-
"vite": "^
|
|
65
|
-
"vitest": "^
|
|
66
|
-
"vue": "^3.5.
|
|
67
|
-
"vue-tsc": "^
|
|
43
|
+
"prettier": "^3.6.2",
|
|
44
|
+
"release-it": "^19.0.6",
|
|
45
|
+
"typescript": "^5.9.3",
|
|
46
|
+
"vite": "^7.2.4",
|
|
47
|
+
"vitest": "^4.0.13",
|
|
48
|
+
"vue": "^3.5.25",
|
|
49
|
+
"vue-tsc": "^3.1.5"
|
|
68
50
|
},
|
|
69
51
|
"publishConfig": {
|
|
70
52
|
"access": "public"
|
|
@@ -99,5 +81,20 @@
|
|
|
99
81
|
"email": "inbox.vinayak@gmail.com",
|
|
100
82
|
"url": "https://vinayakkulkarni.dev"
|
|
101
83
|
},
|
|
102
|
-
"
|
|
103
|
-
|
|
84
|
+
"scripts": {
|
|
85
|
+
"dev": "vite",
|
|
86
|
+
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist",
|
|
87
|
+
"preview": "vite preview",
|
|
88
|
+
"test": "vitest",
|
|
89
|
+
"test:ui": "vitest --ui",
|
|
90
|
+
"test:coverage": "vitest --coverage",
|
|
91
|
+
"lint": "oxlint",
|
|
92
|
+
"lint:fix": "oxlint --fix",
|
|
93
|
+
"format": "prettier --write .",
|
|
94
|
+
"format:check": "prettier --check .",
|
|
95
|
+
"docs:dev": "nuxi dev docs",
|
|
96
|
+
"docs:build": "nuxi generate docs",
|
|
97
|
+
"docs:preview": "nuxi preview docs",
|
|
98
|
+
"release": "release-it"
|
|
99
|
+
}
|
|
100
|
+
}
|