-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 1.8 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
72
73
{
"name": "react-google-map-wrapper",
"version": "1.0.6",
"description": "Component library for rendering Google Maps in React",
"keywords": [
"react",
"reactjs",
"google",
"map",
"maps",
"google map",
"reaect google map",
"google map component"
],
"homepage": "https://pyjun01.github.io/react-google-map-wrapper/",
"bugs": {
"url": "https://github.com/pyjun01/react-google-map-wrapper/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pyjun01/react-google-map-wrapper.git"
},
"funding": "https://github.com/sponsors/pyjun01",
"license": "MIT",
"author": "Yongjun Park",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"bump": "pnpm run build && pnpx bumpp && npm publish",
"docs": "cd docs && npm i && npm run dev",
"lint:fix": "eslint --fix",
"test": "vitest --globals"
},
"peerDependencies": {
"@types/google.maps": ">=3.50.5"
},
"dependencies": {
"@googlemaps/markerclusterer": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@mvlchain/eslint-config": "^1.0.3",
"@mvlchain/prettier-config": "^1.0.1",
"@swc/core": "^1.3.101",
"@types/google.maps": "^3.54.10",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.3.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
}
}