-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "react-geocode",
"version": "2.0.1",
"description": "A module to transform a description of a location (i.e. street address, town name, etc.) into geographic coordinates (i.e. latitude and longitude) and vice versa.",
"packageManager": "pnpm@9.12.0",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"export": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shukerullah/react-geocode.git"
},
"keywords": [
"google",
"geocode",
"geocoder",
"geocoding"
],
"author": "Pir Shukarulalh Shah <shuker_rashdi@yahoo.com> (https://www.shukarullah.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shukerullah/react-geocode/issues"
},
"homepage": "https://github.com/shukerullah/react-geocode#readme",
"scripts": {
"build": "vite build",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx}\"",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@types/node": "^20.16.11",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.2.4"
}
}