This repository was archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@fishjam-dev/ts-client",
"version": "0.5.0",
"description": "Typescript client library for Fishjam",
"license": "Apache-2.0",
"author": "Software Mansion (https://swmansion.com)",
"repository": "github:fishjam-dev/ts-client-sdk",
"homepage": "https://github.com/fishjam-dev/ts-client-sdk#readme",
"bugs": "https://github.com/fishjam-dev/ts-client-sdk/issues",
"keywords": [
"webrtc",
"membrane",
"fishjam"
],
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/src"
],
"exports": {
".": "./dist/src/index.js",
"./protos": "./dist/src/protos/index.js"
},
"scripts": {
"build": "tsc",
"build:check": "tsc --noEmit",
"format": "prettier --write . --ignore-path ./.eslintignore",
"format:check": "prettier --check . --ignore-path ./.eslintignore",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"docs": "typedoc src",
"gen:proto": "sh scripts/protobuf.sh",
"test": "vitest run tests/**",
"test:e2e": "NODE_OPTIONS=--dns-result-order=ipv4first playwright test",
"test:coverage": "vitest run tests/** --coverage",
"prepare": "tsc"
},
"dependencies": {
"events": "^3.3.0",
"protobufjs": "^7.3.0",
"typed-emitter": "^2.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/events": "^3.0.3",
"@types/node": "^20.10.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"fake-mediastreamtrack": "^1.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"react": "^18.2.0",
"testcontainers": "^10.3.2",
"ts-proto": "^1.176.0",
"typed-emitter": "^2.1.0",
"typedoc": "^0.25.13",
"typedoc-plugin-external-resolver": "^1.0.3",
"typedoc-plugin-mdn-links": "^3.1.6",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"zod": "^3.23.6"
},
"lint-staged": {
"*": [
"npm run format:check"
],
"*.(js|ts|tsx)": [
"npm run lint:check"
]
}
}