-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "com.abledbody.quickbin",
"version": "2.0.0",
"description": "QuickBin is intended to make binary serialization and deserialization nearly thoughtless.\n\nSerialization and deserialization are made to be mirror images of each other, so it's easy to see what you're doing, and make sure you serialize and deserialize your data the exact same way. The heavy focus on method chaining makes it easy to read, and quick to implement.",
"displayName": "QuickBin",
"author": {
"name": "abledbody",
"email": "abledbody.gamedev@gmail.com",
"url": "https://github.com/abledbody"
},
"documentationUrl": "https://github.com/abledbody/QuickBin/blob/main/README.md",
"licensesUrl": "https://github.com/abledbody/QuickBin/blob/main/license.md",
"samples": [
{
"displayName": "Example script",
"description": "A short, heavily commented script which demonstrates how QuickBin is commonly used.",
"path": "Samples~/QuickBin Example Script"
}
],
"keywords": [
"binary",
"serialization",
"deserialization",
"serialize",
"deserialize",
"quick",
"bin",
"quickbin",
"abledbody",
"IO",
"data",
"save",
"load",
"read",
"write",
"file",
"network",
"networking",
"multiplayer",
"functional",
"chaining",
"lightweight"
]
}