-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "@stream-io/video-react-sdk",
"version": "1.8.3",
"packageManager": "[email protected]",
"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": "rimraf dist && NODE_ENV=production rollup -c && yarn copy-css",
"copy-css": "cp -R ../../node_modules/@stream-io/video-styling/dist/* dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/GetStream/stream-video-js.git",
"directory": "packages/react-sdk"
},
"files": [
"dist",
"src",
"index.ts",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": [
"*.css"
],
"dependencies": {
"@floating-ui/react": "^0.26.24",
"@stream-io/video-client": "workspace:*",
"@stream-io/video-filters-web": "workspace:*",
"@stream-io/video-react-bindings": "workspace:*",
"chart.js": "^4.4.4",
"clsx": "^2.0.0",
"react-chartjs-2": "^5.2.0"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19",
"react-dom": "^17 || ^18 || ^19"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@stream-io/audio-filters-web": "workspace:^",
"@stream-io/video-styling": "workspace:^",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"rollup": "^4.22.0",
"typescript": "^5.5.2"
}
}