-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
71 lines (71 loc) · 2 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
{
"name": "@maplibre/maplibre-gl-geocoder",
"version": "1.7.0",
"description": "A geocoder control for Maplibre GL JS",
"main": "dist/maplibre-gl-geocoder.js",
"module": "dist/maplibre-gl-geocoder.mjs",
"typings": "dist/maplibre-gl-geocoder.d.ts",
"style": "dist/maplibre-gl-geocoder.css",
"scripts": {
"watch": "rollup --configPlugin @rollup/plugin-typescript -c --watch",
"build": "rollup --configPlugin @rollup/plugin-typescript -c",
"build-css": "mkdir -p dist && cp lib/index.css dist/maplibre-gl-geocoder.css",
"build-dist": "npm run build && npm run build-css",
"test": "jest",
"docs": "typedoc --entryPoints lib/index.ts --out docs --treatWarningsAsErrors",
"lint": "eslint"
},
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/maplibre/maplibre-gl-geocoder.git"
},
"engines": {
"node": ">=18"
},
"keywords": [
"geocoder",
"osm",
"gl"
],
"author": "Maplibre",
"license": "ISC",
"bugs": {
"url": "https://github.com/maplibre/maplibre-gl-geocoder/issues"
},
"homepage": "https://github.com/maplibre/maplibre-gl-geocoder#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/lodash.debounce": "^4.0.9",
"@types/xtend": "^4.0.6",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"maplibre-gl": "^4.5.1",
"rollup": "^4.29.1",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"peerDependencies": {
"maplibre-gl": ">=4.0.0"
},
"dependencies": {
"events": "^3.3.0",
"lodash.debounce": "^4.0.6",
"subtag": "^0.5.0",
"suggestions-list": "^0.0.2",
"xtend": "^4.0.1"
}
}