-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.86 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.86 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
76
77
78
79
80
{
"name": "react-softphone",
"version": "3.1.1",
"description": "Webrtc Softphone React",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"prepack": "npm run build",
"release": "npx np",
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/chamuridis/react-softphone.git"
},
"keywords": [
"React",
"WebRTC",
"Softphone",
"VoIP",
"SIP",
"JsSIP",
"Phone",
"Calling"
],
"author": "Dionis",
"license": "ISC",
"bugs": {
"url": "https://github.com/chamuridis/react-softphone/issues"
},
"homepage": "https://github.com/chamuridis/react-softphone#readme",
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.0",
"@mui/material": "^5.15.0",
"@mui/system": "^5.15.0",
"@phosphor-icons/react": "^2.0.0",
"jssip": "^3.10.0",
"lodash": "^4.17.21",
"luxon": "^3.4.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"sideEffects": false,
"funding": {
"type": "github",
"url": "https://github.com/sponsors/chamuridis"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"esbuild": ">=0.25.0",
"rollup": "^4.0.0",
"rollup-plugin-esbuild": "^6.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0"
}
}