-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "@stream-io/video-react-bindings",
"version": "1.15.0",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"license": "See license in LICENSE",
"scripts": {
"clean": "rimraf dist",
"start": "rollup -c -w",
"build": "NODE_ENV=production rollup -c"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/GetStream/stream-video-js.git",
"directory": "packages/react-bindings"
},
"files": [
"dist",
"src",
"index.ts",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"i18next": "^25.6.0",
"rxjs": "~7.8.2"
},
"peerDependencies": {
"@stream-io/video-client": "workspace:^",
"react": "^17 || ^18 || ^19"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.4",
"@stream-io/video-client": "workspace:^",
"@types/react": "~19.1.17",
"react": "19.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.52.4",
"typescript": "^5.9.3"
}
}