-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "swrtc",
"author": "chaoice",
"email": "215737287@qq.com",
"version": "0.0.23",
"type": "module",
"license": "MIT",
"description": "A WebRTC based communication library for web applications",
"homepage": "https://github.com/chaoice/swrtc",
"unpkg": "./dist/CallManager.umd.js",
"main": "./dist/CallManager.cjs",
"module": "./dist/CallManager.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./dist/CallManager.js",
"require": "./dist/CallManager.cjs",
"types": "./index.d.ts",
"default": "./dist/CallManager.umd.js"
}
},
"files": [
"dist",
"example",
"index.d.ts"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-inject": "^5.0.5",
"sass": "^1.72.0",
"vite": "^5.1.6"
},
"peerDependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"intl-tel-input": "^19.5.7",
"jquery": "^3.7.1",
"mqtt": "^5.5.4",
"wrtc": "^0.4.7"
}
}