-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "geo-city-finder",
"description": "A lightweight JavaScript library for identifying cities based on geographical coordinates and determining if provided coordinates match those of a city with high accuracy.",
"private": false,
"version": "0.4.1",
"type": "module",
"main": "./dist/geo-city-finder.umd.js",
"module": "./dist/geo-city-finder.es.js",
"exports": {
".": {
"import": "./dist/geo-city-finder.es.js",
"require": "./dist/geo-city-finder.umd.js"
}
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "npm run build"
},
"devDependencies": {
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.3",
"vite-tsconfig-paths": "^4.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertArakelyan/geo-city-finder.git"
},
"keywords": [
"geo",
"city",
"finder",
"geolocation",
"geocoding",
"geocoding-api",
"location-search",
"urban-discovery",
"coordinates-to-city",
"precise-geocoding"
],
"author": "Albert Arakelyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlbertArakelyan/geo-city-finder/issues"
},
"homepage": "https://github.com/AlbertArakelyan/geo-city-finder#readme"
}