-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.13 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@geoapify/geocoder-autocomplete",
"version": "3.1.0",
"description": "A JavaScript address autocomplete input, compatible with Leaflet, MapLibre, OpenLayers, and other map libraries for efficient location search and geocoding.",
"main": "dist/index.cjs.js",
"typings": "dist/index.d.ts",
"minimized": "dist/index.min.js",
"module": "dist/index.min.esm.js",
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"build": "tsc",
"build-all": "npm run build && npm run build-minimized",
"build-minimized": "rollup -c rollup-config.mjs",
"build-css-minimized": "postcss -o styles/minimal.min.css styles/minimal.css",
"start:demos": "npm install && npm run build-all && open demo/demo-index.html"
},
"repository": {
"type": "git",
"url": "git+https://git@github.com/geoapify/geocoder-autocomplete.git"
},
"keywords": [
"geocoding",
"address",
"autocomplete",
"search",
"street",
"city",
"country",
"state",
"amenity",
"location",
"regions",
"boundaries",
"place details",
"postal code",
"address lookup",
"location autocomplete"
],
"author": {
"name": "Geoapify GmbH",
"email": "info@geoapify.com",
"url": "https://geoapify.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geoapify/geocoder-autocomplete/issues"
},
"homepage": "https://geoapify.github.io/geocoder-autocomplete/",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@testing-library/jest-dom": "^6.6.4",
"@types/geojson": "^7946.0.16",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.1",
"cssnano": "^7.1.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"rollup": "^4.46.2",
"ts-jest": "^29.4.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
}
}