-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.18 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.18 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
74
{
"name": "@teritorio/maplibre-gl-teritorio-cluster",
"type": "module",
"version": "0.1.4",
"packageManager": "yarn@4.5.0",
"description": "Allow visualization and interaction with all markers, even when superposed. Can display and interact with small cluster without the need to zoom or uncluster.",
"author": "Teritorio",
"license": "MIT",
"homepage": "https://github.com/teritorio/maplibre-gl-teritorio-cluster#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/teritorio/maplibre-gl-teritorio-cluster.git"
},
"bugs": {
"url": "https://github.com/teritorio/maplibre-gl-teritorio-cluster/issues"
},
"exports": {
".": {
"types": "./dist/maplibre-gl-teritorio-cluster.d.ts",
"import": "./dist/maplibre-gl-teritorio-cluster.js",
"require": "./dist/maplibre-gl-teritorio-cluster.umd.cjs"
}
},
"main": "./dist/maplibre-gl-teritorio-cluster.umd.cjs",
"module": "./dist/maplibre-gl-teritorio-cluster.js",
"types": "./dist/maplibre-gl-teritorio-cluster.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:demo": "vite build --mode demo",
"coverage": "vitest run --coverage",
"dev": "vite",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preversion": "yarn build",
"prepare": "simple-git-hooks",
"preview": "vite preview",
"test": "vitest"
},
"peerDependencies": {
"maplibre-gl": "^5.4.0"
},
"dependencies": {
"@turf/bbox": "^7.1.0",
"@turf/helpers": "^7.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"lint-staged": "^15.2.10",
"maplibre-gl": "^5.4.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2",
"vite": "^5.4.4",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.5"
},
"resolutions": {
"@microsoft/api-extractor/typescript": "^5.6.2"
},
"simple-git-hooks": {
"commit-msg": "yarn dlx commitlint --edit $1",
"pre-commit": "yarn dlx lint-staged",
"preserveUnused": true
},
"lint-staged": {
"*": "yarn lint:fix"
}
}