-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
61 lines (61 loc) · 1.37 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
{
"name": "protomaps-leaflet",
"version": "4.0.1",
"files": [
"dist",
"src"
],
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/leaflet": "^1.9.8",
"@types/node": "^16.18.74",
"@types/rbush": "^3.0.0",
"esbuild": "^0.15.11",
"tslib": "^2.3.0",
"tsup": "^8.2.3",
"tsx": "^4.7.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@mapbox/point-geometry": "^1.1.0",
"@mapbox/vector-tile": "^2.0.2",
"@types/css-font-loading-module": "^0.0.7",
"color2k": "^2.0.3",
"pbf": "^4.0.1",
"pmtiles": "^3.0.7",
"potpack": "^1.0.2",
"rbush": "^3.0.1"
},
"scripts": {
"build": "tsup",
"tsc": "tsc --noEmit --watch",
"test": "tsx --test --test-reporter spec test/*.test.ts",
"check": "biome check src test"
},
"repository": {
"type": "git",
"url": "git://github.com/protomaps/protomaps-leaflet.git"
},
"keywords": [
"gis",
"map"
],
"license": "BSD-3-Clause"
}