-
Notifications
You must be signed in to change notification settings - Fork 223
/
package.json
94 lines (94 loc) · 2.85 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "leaflet-control-geocoder",
"version": "3.1.0",
"description": "Extendable geocoder with builtin support for OpenStreetMap Nominatim, Bing, Google, Mapbox, MapQuest, What3Words, Photon, Pelias, HERE, Neutrino, Plus codes",
"type": "module",
"source": "src/index.ts",
"main": "dist/Control.Geocoder.umd.js",
"module": "dist/Control.Geocoder.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/Control.Geocoder.modern.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/Control.Geocoder.cjs"
}
},
"./dist/Control.Geocoder.css": "./dist/Control.Geocoder.css",
"./Control.Geocoder.css": "./dist/Control.Geocoder.css",
"./style.css": "./dist/Control.Geocoder.css"
},
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "vite build && tsc --target ES2020 --declaration --emitDeclarationOnly --skipLibCheck --outDir dist/ src/index.ts",
"build:demo": "npm run build:demo-esbuild && npm run build:demo-rollup && npm run build:demo-webpack",
"build:demo-esbuild": "cd demo-esbuild && npm install && npm run build",
"build:demo-rollup": "cd demo-rollup && npm install && npm run build",
"build:demo-webpack": "cd demo-rollup && npm install && npm run build",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --output-unreleased",
"doc": "typedoc --excludePrivate --exclude node_modules/** --out docs/ src/",
"test": "vitest run --dom"
},
"repository": {
"type": "git",
"url": "git://github.com/perliedman/leaflet-control-geocoder.git"
},
"files": [
"LICENCE",
"dist/**",
"demo/**",
"src/**"
],
"keywords": [
"leaflet",
"geocoder",
"locations",
"openstreetmap",
"nominatim",
"bing",
"bingmaps",
"googlemaps",
"google-maps",
"mapbox",
"mapquest",
"opencage",
"what3words",
"photon",
"mapzen",
"pelias",
"here",
"neutrino",
"pluscodes",
"open location code"
],
"author": "Per Liedman <[email protected]>",
"contributors": [
"Simon Legner <[email protected]>"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/perliedman/leaflet-control-geocoder/issues"
},
"devDependencies": {
"@types/leaflet": "^1.9.15",
"conventional-changelog-cli": "^5.0.0",
"happy-dom": "^15.11.7",
"leaflet": "^1.9.4",
"prettier": "^3.4.2",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"leaflet": "^1.6.0"
},
"optionalDependencies": {
"open-location-code": "^1.0.3"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}