-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.98 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
{
"name": "@stream-io/video-react-sdk",
"version": "1.39.1",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./embedded": {
"types": "./dist/embedded.d.ts",
"import": "./dist/embedded.es.js",
"require": "./dist/embedded.cjs.js"
},
"./dist/css/*": "./dist/css/*"
},
"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",
"assets",
"index.ts",
"embedded.ts",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": [
"*.css"
],
"dependencies": {
"@floating-ui/react": "^0.27.19",
"@stream-io/video-client": "workspace:*",
"@stream-io/video-filters-web": "workspace:*",
"@stream-io/video-react-bindings": "workspace:*",
"chart.js": "^4.5.1",
"clsx": "^2.1.1",
"react-chartjs-2": "^5.3.1"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19",
"react-dom": "^17 || ^18 || ^19"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@stream-io/audio-filters-web": "workspace:^",
"@stream-io/typescript-config": "workspace:^",
"@stream-io/video-styling": "workspace:^",
"@types/node": "^25.9.3",
"@types/react": "~19.2.15",
"@types/react-dom": "~19.2.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"rimraf": "^6.1.3",
"rollup": "^4.60.4",
"typescript": "^6.0.3"
}
}