-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "mapbox-gl-contextmenu",
"version": "1.6.0",
"description": "A contextmenu plugin for Mapbox GL JS",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.build.json && vite build",
"preview": "vite preview",
"docs": "typedoc"
},
"keywords": [
"mapbox",
"mapbox-gl",
"contextmenu",
"plugin"
],
"author": "Adam Ratcliffe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aratcliffe/mapbox-gl-contextmenu.git"
},
"homepage": "https://aratcliffe.github.io/mapbox-gl-contextmenu/",
"bugs": {
"url": "https://github.com/aratcliffe/mapbox-gl-contextmenu/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"mapbox-gl": ">=1.0.0 <4.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"mapbox-gl": ">=1.0.0 <4.0.0",
"sass": "^1.94.2",
"typedoc": "^0.28.15",
"typescript": "^5.3.3",
"vite": "^5.0.8"
}
}