-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "@timeleap/sia",
"version": "2.1.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"ts:check": "tsc --noEmit",
"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": {
"@eslint/js": "latest",
"@faker-js/faker": "^9.2.0",
"@types/node": "^22.9.0",
"@types/ws": "^8",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"cbor-x": "^1.6.0",
"eslint": "latest",
"eslint-config-prettier": "latest",
"msgpackr": "^1.11.2",
"prettier": "^3.4.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"
}