-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.81 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
{
"name": "@arcas/sdk",
"main": "./src/index.js",
"version": "0.1.2",
"license": "MIT",
"engines": {
"node": ">= 14.16 <18"
},
"devDependencies": {
"@types/jest": "~27.0.1",
"@types/node": "~14.14.45",
"@typescript-eslint/eslint-plugin": "~4.30",
"@typescript-eslint/parser": "~4.30",
"eslint": "~7.32.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.4.0",
"jest": "~27.1.0",
"prettier": "~2.3.2",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.5",
"tsutils": "~3.21.0",
"typescript": "~4.4.2"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "yarn lint",
"build": "rm -rf build && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest",
"test-coverage": "jest --coverage",
"test:watch": "jest --watch --verbose",
"download-proto": "mkdir -p proto && cd proto && curl -O https://raw.githubusercontent.com/arcas-io/load-test-server/main/proto/webrtc.proto",
"autogen-proto-ts": "./node_modules/.bin/proto-loader-gen-types --longs=String --enums=String --defaults --oneofs --grpcLib=@grpc/grpc-js --outDir=proto_ts/ proto/webrtc.proto",
"autogen": "yarn run download-proto & yarn run autogen-proto-ts",
"postinstall": "node downloader.js"
},
"dependencies": {
"@grpc/grpc-js": "^1.3.7",
"@grpc/proto-loader": "^0.6.4",
"cli-color": "^2.0.1",
"cli-progress": "^3.9.1",
"clui": "^0.3.6",
"jsdom": "^18.1.1",
"jsonwebtoken": "^8.5.1",
"mediasoup-client": "^3.6.42",
"nanoid": "^3.1.30",
"node-fetch": "2",
"nodejs-file-downloader": "^4.8.1",
"socket.io-client": "^4.2.0",
"tslib": "~2.3.1",
"uuid": "^8.3.2",
"zod": "^3.11.6"
}
}