-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.96 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
75
{
"name": "maplibre-properlabels",
"version": "1.0.0",
"description": "tiny maplibre plugin to place labels properly for tiled geometries",
"keywords": [
"maplibre",
"labels",
"tiled"
],
"homepage": "https://github.com/AbelVM/maplibre-properlabels#readme",
"bugs": {
"url": "https://github.com/AbelVM/maplibre-properlabels/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbelVM/maplibre-properlabels.git"
},
"license": "MIT",
"author": "Abel Vázquez Montoro",
"type": "module",
"files": [
"dist"
],
"main": "./dist/maplibre-properlabels.umd.cjs",
"module": "./dist/maplibre-properlabels.js",
"exports": {
".": {
"import": "./dist/maplibre-properlabels.js",
"require": "./dist/maplibre-properlabels.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:all": "npm run test && npm run test:e2e",
"test:coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"lint:fix": "eslint --fix 'src/**/*.js' 'test/**/*.js'",
"format": "prettier --write 'src/**/*.js' 'test/**/*.js' 'README.md'",
"clean": "rm -rf dist .vite .cache"
},
"dependencies": {
"@turf/area": "^7.3.4",
"@turf/combine": "^7.3.4",
"@turf/flatten": "^7.3.4",
"@turf/simplify": "^7.3.4",
"@turf/union": "^7.3.4",
"polylabel": "^2.0.1",
"performance-helpers": "file:../performance-helpers"
},
"peerDependencies": {
"maplibre-gl": ">=5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@vitest/coverage-v8": "^4.1.2",
"http-server": "^14.1.1",
"terser": "^5.46.1",
"vite": "^7.2.2",
"vitest": "^4.1.2",
"eslint": "^9.0.0",
"prettier": "^3.0.0"
},
"vitest": {
"exclude": [
"node_modules/**",
"e2e/**",
"playwright/**"
]
}
}