-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 740 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 740 Bytes
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
{
"name": "react-sipjs",
"version": "0.0.6",
"description": "",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "vite build && tsc"
},
"keywords": ["react", "sipjs", "sip", "webrtc", "voip", "call"],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.23",
"react": "^18.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"sip.js": "^0.21.2"
},
"publishConfig": {
"@vanbui1995:registry": "https://npm.pkg.github.com"
}
}