-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.83 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "catalyst-vc-react",
"version": "3.2.1",
"author": "@GoldinGuy <[email protected]> & @JoeSemrai <[email protected]>",
"private": false,
"license": "AGPL-3.0-only",
"description": "Reliable and scalable open-source video chat in a few lines of code",
"repository": "https://github.com/Catalyst-Video/catalyst-react",
"homepage": "https://catalyst.chat/",
"bugs": "https://github.com/Catalyst-Video/catalyst-react/issues",
"keywords": [
"video chat",
"react video chat",
"react",
"free video chat",
"socket-io",
"webrtc",
"catalyst",
"livekit",
"video-chat",
"embed video chat"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"prestart:tailwind": "npx tailwindcss-cli@latest build -i src/styles/tailwind.css -o src/styles/tailwind.output.css",
"prebuild:tailwind": "npx tailwindcss-cli@latest build -i src/styles/tailwind.css -o src/styles/tailwind.output.css",
"prestart": "npm run prestart:tailwind",
"prebuild": "npm run prebuild:tailwind",
"start": "tsdx watch",
"build": "tsdx build",
"watch": "tsdx watch",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "npm run prebuild && tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@tippyjs/react": "^4.2.5",
"@types/css-global-variables": "^3.0.1",
"catalyst-lk-client": "github:Catalyst-Video/catalyst-lk-client#prod",
"css-element-queries": "^1.2.3",
"css-global-variables": "^3.0.2",
"react-device-detect": "^1.17.0",
"react-full-screen": "^1.0.1",
"react-scripts": "^4.0.3",
"react-cookie": "^4.0.3"
},
"devDependencies": {
"@babel/helper-member-expression-to-functions": "^7.14.7",
"@rollup/plugin-strip": "^2.0.0",
"@rollup/plugin-url": "^6.0.0",
"@size-limit/preset-big-lib": "^4.5.5",
"@size-limit/preset-small-lib": "^4.5.5",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/autoprefixer": "^10.2.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/socket.io-client": "^1.4.36",
"@types/tailwindcss": "^2.0.3",
"autoprefixer": "^9.8.6",
"husky": "^5.1.3",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom-fifteen": "^1.0.2",
"lint": "^0.7.0",
"postcss": "^8.3.5",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.5",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.0",
"size-limit": "^4.10.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/catalyst-vc-react.esm.js",
"size-limit": [
{
"path": "dist/catalyst-vc-react.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/catalyst-vc-react.esm.js",
"limit": "10 KB"
}
],
"jest": {
"testEnvironment": "jest-environment-jsdom-fifteen",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}