-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "picobuf",
"version": "0.0.7",
"description": "A powerful and flexible library for working with Protocol Buffers in JavaScript",
"author": "Basedwon <basedwon@protonmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basedwon/picobuf.git"
},
"bugs": {
"url": "https://github.com/basedwon/picobuf/issues"
},
"homepage": "https://github.com/basedwon/picobuf#readme",
"main": "lib/picobuf.js",
"exports": {
".": {
"browser": "./lib/picobuf.js",
"node": "./lib/picobuf-n.js"
},
"./tests": {
"browser": "./test/test.js",
"node": "./test/test.js"
},
"./*/": "./lib/*/",
"./*": "./lib/*.js"
},
"browser": {
".": "./lib/picobuf.js"
},
"types": "./lib/types.d.ts",
"scripts": {
"dev": "nodemon -w .. -x npm test",
"docs": "jsdoc2md lib/*.js > docs/api.md",
"test": "testr test/index.n.test.js"
},
"dependencies": {
"big.js": "^6.2.1",
"bs58": "^5.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"msgpack-lite": "^0.1.26"
},
"devDependencies": {
"@basd/testr": "^0.0.8",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0"
},
"keywords": [
"picobuf",
"protobuf",
"msgpack",
"data serialization",
"data modeling",
"data validation",
"buffer",
"isomorphic",
"byte",
"binary",
"data structures",
"serialization",
"deserialization",
"encode",
"decode",
"node.js",
"browser",
"json",
"typescript",
"javascript",
"schema",
"schema definition",
"custom data types",
"message format",
"data transfer",
"web development",
"backend",
"frontend",
"realtime",
"communication"
]
}