-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@fishjam-cloud/react-client",
"version": "0.28.2-rc.0",
"description": "React client library for Fishjam",
"license": "Apache-2.0",
"author": "Fishjam Team",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fishjam-cloud/web-client-sdk.git",
"directory": "packages/react-client"
},
"homepage": "https://github.com/fishjam-cloud/web-client-sdk#readme",
"bugs": "https://github.com/fishjam-cloud/web-client-sdk/issues",
"keywords": [
"webrtc",
"fishjam"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./debug": {
"import": "./dist/debug.js",
"types": "./dist/debug.d.ts"
}
},
"scripts": {
"build": "tsc",
"e2e": "NODE_OPTIONS=--dns-result-order=ipv4first playwright test",
"test": "vitest run",
"docs": "typedoc src src/experimental",
"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",
"prepack": "yarn workspace @fishjam-cloud/ts-client build && yarn build"
},
"peerDependencies": {
"react": "^19.1.0"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/events": "^3.0.3",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^22.14.0",
"@types/react": "19.1.0",
"fake-mediastreamtrack": "^2.0.0",
"jsdom": "^26.0.0",
"typed-emitter": "^2.1.0",
"typedoc": "^0.28.2",
"typedoc-plugin-mdn-links": "^5.0.1",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"dependencies": {
"@fishjam-cloud/ts-client": "workspace:*",
"events": "3.3.0",
"lodash.isequal": "4.5.0"
},
"directories": {
"example": "examples"
},
"packageManager": "yarn@4.16.0",
"lint-staged": {
"*": [
"yarn format"
],
"*.(js|ts|tsx)": [
"yarn lint"
]
}
}