-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "mapbox-map-web-component",
"version": "1.0.2",
"description": "Web Component with Mapbox to show point on map with custom styles, markers and sizes.",
"keywords": [
"mapbox",
"map",
"web component",
"map marker",
"mapbox gl",
"map web component"
],
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/mapbox-map-web-component/mapbox-map-web-component.esm.js",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Dawid Ryczko",
"url": "https://zacznijprogramowac.net/"
},
"exports": {
".": {
"import": "./dist/mapbox-map-web-component/mapbox-map-web-component.esm.js",
"require": "./dist/mapbox-map-web-component/mapbox-map-web-component.cjs.js"
},
"./map-box-map": {
"import": "./dist/components/map-box-map.js",
"types": "./dist/components/map-box-map.d.ts"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/DawidRyczko/map-box-web-component.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"generate": "stencil generate"
},
"devDependencies": {
"@stencil/core": "^4.7.0",
"@types/jest": "^29.5.6",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^16.18.11",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"puppeteer": "^21.9.0"
},
"dependencies": {
"mapbox-gl": "^3.9.0"
},
"peerDependencies": {
"mapbox-gl": "^3.9.0"
}
}