-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 977 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 977 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
{
"name": "javascript-serialization-benchmark",
"description": "Comparison of JavaScript serialization libraries",
"version": "2.0.0",
"license": "MIT",
"author": "Mattias E. O. Andersson",
"repository": "github:Adelost/javascript-serialization-benchmark",
"homepage": "https://github.com/Adelost/javascript-serialization-benchmark#readme",
"keywords": [],
"scripts": {
"start": "node --expose-gc -r ts-node/register src/index.ts",
"build": "tsc"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"avro-js": "^1.12.1",
"avsc": "^5.7.9",
"bser": "^2.1.1",
"bson": "^7.2.0",
"cbor-x": "^1.6.0",
"google-protobuf": "^4.0.1",
"js-binary": "^1.2.0",
"msgpackr": "^1.11.8",
"pbf": "^3.2.1",
"protobufjs": "^8.0.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.65.0",
"@bufbuild/protoc-gen-es": "^2.11.0",
"@types/node": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.0"
}
}