-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "sializer",
"version": "2.0.2",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "yarn build",
"benchmark": "yarn build && yarn node dist/benchmark/index.js",
"benchmark:ws:server": "yarn build && yarn node dist/benchmark/ws/simple/server.js",
"benchmark:ws": "yarn build && yarn node dist/benchmark/ws/simple/index.js",
"benchmark:ws:server:heavy": "yarn build && yarn node dist/benchmark/ws/heavy/server.js",
"benchmark:ws:heavy": "yarn build && yarn node dist/benchmark/ws/heavy/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@types/node": "^22.9.0",
"@types/ws": "^8",
"cbor-x": "^1.6.0",
"msgpackr": "^1.11.2",
"sializer": "0",
"tinybench": "^3.0.6",
"ts-proto": "^2.4.2",
"typescript": "^5.4.3",
"ws": "^8.18.0"
},
"dependencies": {
"utfz-lib": "^0.2.0"
},
"packageManager": "[email protected]",
"type": "module"
}