-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 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
57
58
59
60
61
62
{
"name": "react-static-google-map",
"version": "0.10.0",
"description": "Reusable react component to load Google Static map images in your react app",
"keywords": [
"google map",
"react",
"static google map"
],
"license": "MIT",
"author": "Bond",
"repository": {
"type": "git",
"url": "https://github.com/bondz/react-static-google-map"
},
"files": [
"dist"
],
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"prepare": "vp config"
},
"dependencies": {
"invariant": "^2.2.2",
"react-promise": "2.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.0.0",
"@types/invariant": "^2.2.37",
"@types/react": "^18.0.0",
"jsdom": "^29.0.0",
"react": "18.3.1",
"react-dom": "^18.0.0",
"typescript": "^5.9.3",
"vite-plus": "latest"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"resolutions": {
"react": "18.3.1",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "yarn@4.12.0"
}