-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "pbf",
"version": "4.0.1",
"description": "a low-level, lightweight protocol buffers implementation in JavaScript",
"main": "index.js",
"type": "module",
"exports": {
".": "./index.js",
"./compile": "./compile.js"
},
"scripts": {
"bench": "node bench/bench.js",
"pretest": "eslint *.js compile.js test/*.js test/fixtures/*.js bin/pbf",
"test": "tsc && node --test",
"cov": "node --test --experimental-test-covetage",
"build": "rollup -c",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"bin",
"dist",
"compile.js",
"index.d.ts"
],
"types": "index.d.ts",
"bin": {
"pbf": "bin/pbf"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mapbox/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": {
"resolve-protobuf-schema": "^2.1.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"benchmark": "^2.1.4",
"eslint": "^9.6.0",
"eslint-config-mourner": "^4.0.1",
"protobufjs": "^7.3.2",
"protocol-buffers": "^5.0.0",
"rollup": "^4.18.0",
"tile-stats-runner": "^1.0.0",
"typescript": "^5.5.3"
}
}