@webrtc-remote-control/vue
Version:
Thin abstraction layer above peerjs that will let you be more productive at making WebRTC data channels based apps.
59 lines (58 loc) • 1.97 kB
JSON
{
"name": "@webrtc-remote-control/vue",
"amdName": "webrtcRemoteControlVue",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/topheman/webrtc-remote-control.git"
},
"homepage": "http://webrtc-remote-control.vercel.app/",
"bugs": "https://github.com/topheman/webrtc-remote-control/issues",
"description": "Thin abstraction layer above peerjs that will let you be more productive at making WebRTC data channels based apps.",
"keywords": [
"WebRTC",
"peerjs",
"RTCDataChannel",
"vue"
],
"type": "module",
"main": "./dist/vue.cjs",
"module": "./dist/vue.module.js",
"unpkg": "./dist/vue.umd.js",
"source": "./src/vue.js",
"exports": {
".": {
"types": "./src/vue.d.ts",
"import": "./dist/vue.modern.js",
"require": "./dist/vue.cjs"
}
},
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:modules": "microbundle --generateTypes false --no-compress",
"build:umd-dev": "microbundle build --generateTypes false --globals vue=Vue --raw --external vue --define process.env.NODE_ENV='development' --no-pkg-main -o dist/webrtc-remote-control-vue.umd.dev.js -f umd --no-compress",
"build:umd-prod": "microbundle build --generateTypes false --globals vue=Vue --raw --external vue --define process.env.NODE_ENV='production' --no-pkg-main -o dist/webrtc-remote-control-vue.umd.prod.js -f umd",
"dev": "microbundle watch --generateTypes false --no-compress"
},
"author": "Christophe Rosset <tophe@topheman.com> (http://labs.topheman.com/)",
"types": "src/vue.d.ts",
"license": "MIT",
"files": [
"src",
"dist"
],
"devDependencies": {
"microbundle": "^0.14.2",
"npm-run-all": "^4.1.5"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"dependencies": {
"@webrtc-remote-control/core": "^0.1.3"
},
"publishConfig": {
"access": "public"
},
"gitHead": "77b34900aaadc6aaa19933385f2baa10a57cdbd5"
}