-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.97 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
{
"name": "vue-video-conference",
"version": "1.0.7",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build:vue": "rollup -c && rollup -c --environment MINIFY",
"build:vue:watch": "rollup -c --watch",
"build:style": "sass --no-charset ./src/assets/index.scss | node ./build/print-banner.js > dist/core.css && cleancss -o dist/core.min.css dist/core.css",
"build:lib": "rimraf dist && npm run build:vue && npm run build:style",
"publish:lib": "npm run build:lib && npm publish",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:publish": "npm run docs:build && cd docs/.vuepress/dist && git init && git add -A && git commit -m 'deploy' && git push -f git@github.com:toneflix/vue-video-conferencing.git main:docs && cd ../../.. && git add -A && git commit -m 'docs: update' && git push origin main"
},
"dependencies": {
"@joinera/lib-jitsi-meet": "^1.0.1599",
"@vueuse/components": "^10.2.1",
"@vueuse/core": "^10.2.1",
"core-js": "^3.8.3",
"feather-icons": "^4.29.0",
"jquery": "^3.7.0",
"mitt": "^3.0.1",
"vue-feather": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vuepress/plugin-register-components": "^2.0.0-beta.64",
"clean-css-cli": "^5.6.2",
"eslint": "^8.44.0",
"eslint-plugin-vue": "^9.15.1",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"vuepress": "^2.0.0-beta.64",
"webpack": "^5.88.1"
},
"peerDependencies": {
"vue": "^3.2.13"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"description": "This is a simple video conferencing library built with Vue.js and Jitsi Meet API (Low Level). The library allows you to create a voice/video conferencing room that allows a one to many connection.",
"main": "dist/vue-video-conferencing.cjs",
"module": "dist/vue-video-conferencing.mjs",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/toneflix/vue-video-conferencing.git"
},
"keywords": [
"Jitsi",
"Vue",
"Video",
"Call",
"Voice",
"Audio",
"Conferencing",
"Live",
"Stream"
],
"author": "3m1n3nc3 <legacy@toneflix.com.ng>",
"license": "MIT",
"bugs": {
"url": "https://github.com/toneflix/vue-video-conferencing/issues"
},
"homepage": "https://toneflix.github.io/vue-video-conferencing"
}