-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.54 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": "react-butterfly-map",
"version": "1.0.0-rc6",
"license": "MIT",
"private": false,
"main": "dist/reactButterflyMap.umd.cjs",
"module": "dist/reactButterflyMap.js",
"type": "module",
"exports": {
".": {
"import": "./dist/reactButterflyMap.js",
"require": "./dist/reactButterflyMap.umd.cjs"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/binary-butterfly/react-butterfly-map.git"
},
"scripts": {
"build:dev": "vite build",
"build:prod": "NODE_ENV=production vite build",
"start": "vite",
"prepublishOnly": "npm run build:prod"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"prop-types": "^15.7.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"maplibre-gl": "^4.7.1",
"react-map-gl": "^7.1.7",
"styled-components": "^6.1.13"
},
"description": "This is a small react component that contains an OpenStreetMap widget with the ability to render points of interest.",
"bugs": {
"url": "https://github.com/binary-butterfly/react-butterfly-map/issues"
},
"homepage": "https://github.com/binary-butterfly/react-butterfly-map#readme",
"keywords": [
"react",
"map"
],
"author": "binary butterfly GmbH"
}