-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 936 Bytes
/
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
{
"name": "googlemaps-react-primitives",
"version": "1.5.0",
"description": "Google Maps primitives for React",
"keywords": [
"googlemaps",
"react",
"typescript"
],
"license": "MIT",
"author": "Felix Gnass <[email protected]>",
"repository": "fgnass/googlemaps-react-primitives",
"type": "module",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "vite",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@googlemaps/typescript-guards": "^1.0.5",
"fast-equals": "^2.0.4",
"vite": "^4.5.0"
},
"devDependencies": {
"@googlemaps/react-wrapper": "^1.1.22",
"@types/google.maps": "^3.47.3",
"@types/react": "^17.0.69",
"@types/react-dom": "^17.0.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
}
}