-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
75 lines (75 loc) · 2.26 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
{
"name": "@maplibre/maplibre-gl-geocoder",
"version": "1.7.1",
"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": "npm run build -- --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": "npm run test-unit && npm run test-integration",
"test-unit": "vitest run --config vitest.config.unit.mts",
"test-unit-ci": "npm run test-unit -- --coverage",
"test-integration": "vitest run --config vitest.config.integration.mts",
"test-integration-ci": "npm run test-integration -- --coverage",
"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/lodash.debounce": "^4.0.9",
"@types/xtend": "^4.0.6",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.19.0",
"maplibre-gl": "^5.0.1",
"puppeteer": "^24.1.1",
"rollup": "^4.32.0",
"rollup-plugin-dts": "^6.1.1",
"st": "^3.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.3"
},
"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"
}
}