-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "maplibre-gl-overview-map",
"private": false,
"version": "1.0.5",
"description": "An overview map plugin for mapligre-gl-js.",
"license": "MIT",
"author": "YuChunTsao",
"type": "module",
"main": "./dist/maplibre-gl-overview-map.umd.js",
"module": "./dist/maplibre-gl-overview-map.es.js",
"types": "./dist/maplibre-gl-overview-map.d.ts",
"exports": {
".": {
"import": "./dist/maplibre-gl-overview-map.es.js",
"require": "./dist/maplibre-gl-overview-map.umd.js"
},
"./dist/maplibre-gl-overview-map.css": {
"import": "./dist/maplibre-gl-overview-map.css",
"require": "./dist/maplibre-gl-overview-map.css"
}
},
"files": [
"dist"
],
"keywords": [
"overview-map",
"maplibre-gl-js"
],
"repository": {
"type": "git",
"url": "https://github.com/YuChunTsao/maplibre-gl-overview-map.git"
},
"homepage": "https://github.com/YuChunTsao/maplibre-gl-overview-map",
"bugs": {
"url": "https://github.com/YuChunTsao/maplibre-gl-overview-map/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release": "tsc && vite build --mode lib",
"preview": "vite preview",
"format": "prettier . --write",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@types/node": "^20.8.9",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.2"
},
"dependencies": {
"maplibre-gl": "^3.5.1"
}
}