-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.39 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
{
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@msgpack/msgpack": "^2.7.1",
"@types/jest": "^29.4.4",
"@types/node-gzip": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"import": "^0.0.6",
"jest": "^29.5.0",
"node-gzip": "^1.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.4.0",
"typescript": "^5.0.2"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
"name": "unspoken",
"description": "Pack network messages more efficiently. Compress keyed objects into keyless arrays. Decompress arrays back into usable objects.",
"version": "0.1.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j1mmie/unspoken.git"
},
"keywords": [
"serialize",
"object",
"array",
"object-to-array",
"arrayify",
"schema",
"contract",
"messagepack",
"msgpack",
"deserialize",
"compress",
"decompress",
"uncompress",
"network",
"game",
"socket",
"server"
],
"author": "Jimmie Tyrrell",
"license": "MIT",
"bugs": {
"url": "https://github.com/j1mmie/unspoken/issues"
},
"homepage": "https://github.com/j1mmie/unspoken#readme"
}