@raghuraj-singh/swift-link 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -0
- package/dist/ringtone.mp3 +0 -0
- package/dist/swift-link.css +1 -0
- package/dist/swift-link.es.js +6954 -0
- package/dist/swift-link.umd.js +162 -0
- package/package.json +44 -0
package/package.json
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
{
|
2
|
+
"name": "@raghuraj-singh/swift-link",
|
3
|
+
"version": "1.0.1",
|
4
|
+
"description": "Swift Link Library for Peer to Peer Video Conferencing",
|
5
|
+
"type": "module",
|
6
|
+
"author": "Raghuraj Singh Solanki",
|
7
|
+
"license": "ISC",
|
8
|
+
"main": "dist/swift-link.cjs.js",
|
9
|
+
"module": "dist/swift-link.es.js",
|
10
|
+
"types": "dist/index.d.ts",
|
11
|
+
"files": [
|
12
|
+
"dist"
|
13
|
+
],
|
14
|
+
"scripts": {
|
15
|
+
"dev": "vite",
|
16
|
+
"build": "tsc -b && vite build",
|
17
|
+
"lint": "eslint .",
|
18
|
+
"preview": "vite preview",
|
19
|
+
"prepublishOnly": "npm run build"
|
20
|
+
},
|
21
|
+
"dependencies": {
|
22
|
+
"@ant-design/icons": "^5.6.1",
|
23
|
+
"janus-gateway": "^1.3.0",
|
24
|
+
"react": "^19.0.0",
|
25
|
+
"react-dom": "^19.0.0",
|
26
|
+
"webrtc-adapter": "^9.0.1"
|
27
|
+
},
|
28
|
+
"devDependencies": {
|
29
|
+
"@eslint/js": "^9.19.0",
|
30
|
+
"@types/node": "^22.13.2",
|
31
|
+
"@types/react": "^19.0.8",
|
32
|
+
"@types/react-dom": "^19.0.3",
|
33
|
+
"@vitejs/plugin-react": "^4.3.4",
|
34
|
+
"eslint": "^9.19.0",
|
35
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
36
|
+
"eslint-plugin-react-refresh": "^0.4.18",
|
37
|
+
"globals": "^15.14.0",
|
38
|
+
"rollup": "^4.34.6",
|
39
|
+
"sass": "^1.84.0",
|
40
|
+
"typescript": "~5.7.2",
|
41
|
+
"typescript-eslint": "^8.22.0",
|
42
|
+
"vite": "^6.1.0"
|
43
|
+
}
|
44
|
+
}
|