vue-window-bridge
Version:
Vue composable for managing multiple windows across displays, with cross-window communication
56 lines • 1.3 kB
JSON
{
"name": "vue-window-bridge",
"version": "1.1.3",
"description": "Vue composable for managing multiple windows across displays, with cross-window communication",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"lint": "tsc",
"release": "changeset publish --access public",
"prepublishOnly": "bun run build"
},
"keywords": [
"vue",
"composable",
"multi-window",
"multi-monitor",
"window-management",
"cross-window-communication"
],
"author": "sousaivan",
"license": "MIT",
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@changesets/cli": "latest",
"tsup": "latest",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sousaivan99/vue-window-bridge"
},
"bugs": {
"url": "https://github.com/sousaivan99/vue-window-bridge/issues"
},
"homepage": "https://github.com/sousaivan99/vue-window-bridge#readme",
"publishConfig": {
"access": "public"
}
}