forked from mapbox/pbf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 922 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 922 Bytes
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
{
"name": "@mapwhit/pbf",
"version": "2.0.0",
"description": "a low-level, lightweight protocol buffers implementation in JavaScript",
"exports": "./index.js",
"type": "module",
"scripts": {
"test": "make check"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mapwhit/pbf.git"
},
"keywords": [
"protocol",
"buffer",
"pbf",
"protobuf",
"binary",
"format",
"serialization",
"encoder",
"decoder"
],
"author": "Konstantin Kaefer",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mapbox/pbf/issues"
},
"homepage": "https://github.com/mapbox/pbf",
"dependencies": {
"ieee754": "^1.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"benchmark": "^2.1.4",
"protobufjs": "~8.0.0",
"protocol-buffers": "~5",
"tile-stats-runner": "^1.0.0"
}
}