-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.56 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
{
"name": "@millicast/vue-viewer-plugin",
"version": "1.6.4",
"private": false,
"author": "Millicast, Inc.",
"scripts": {
"build": "vue-cli-service build --target lib --name millicast-vue-viewer-plugin index.js",
"build-legacy": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --target lib --name millicast-vue-viewer-plugin index.js",
"lint": "vue-cli-service lint",
"pretty": "prettier --write \"./**/*.{js,json,vue}\""
},
"main": "dist/millicast-vue-viewer-plugin.umd.js",
"module": "dist/millicast-vue-viewer-plugin.common.js",
"browser": "dist/millicast-vue-viewer-plugin.umd.js",
"files": [
"dist/*",
"*.json",
"src/*",
"*.js",
"README.md"
],
"dependencies": {
"@millicast/sdk": "^0.3.2",
"bootstrap": "github:millicast/bootstrap#ml-viewer",
"bootstrap-icons": "github:millicast/icons#ml-viewer",
"can-autoplay": "^3.0.0",
"css-element-queries": "^1.2.3",
"vue-toastification": "^2.0.0-rc.1",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0-0",
"git-branch-is": "^4.0.0",
"prettier": "^2.7.1",
"sass": "^1.34.0",
"sass-loader": "^10",
"vue": "^3.0.0",
"vue-loader": "^17.0.0"
},
"peerDependencies": {
"vue": ">= 3.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/no-multiple-template-root": "off"
}
},
"browserslist": [
"safari >= 7",
"ios_saf >= 9",
"> 1%",
"last 2 versions",
"not dead"
],
"homepage": "https://github.com/millicast/vue-viewer-plugin#readme",
"keywords": [
"sdk",
"vue",
"vue3",
"millicast",
"webrtc",
"realtime",
"streaming"
],
"license": "See in LICENSE file",
"repository": {
"type": "git",
"url": "git+https://github.com/millicast/vue-viewer-plugin.git"
},
"description": "Vue.js plugin to embed viewer of a Millicast stream. This plugin allows developers to simplify Millicast services integration into their own Vue.js apps.",
"bugs": {
"url": "https://github.com/millicast/vue-viewer-plugin/issues"
},
"directories": {
"example": "examples"
}
}