UNPKG

@laravel/echo-vue

Version:

Vue hooks for seamless integration with Laravel Echo.

81 lines 1.89 kB
{ "name": "@laravel/echo-vue", "version": "2.4.0", "description": "Vue hooks for seamless integration with Laravel Echo.", "keywords": [ "laravel", "pusher", "ably", "vue" ], "homepage": "https://github.com/laravel/echo/tree/2.x/packages/vue", "repository": { "type": "git", "url": "https://github.com/laravel/echo" }, "license": "MIT", "author": { "name": "Taylor Otwell" }, "type": "module", "main": "dist/index.common.js", "module": "dist/index.js", "types": "dist/index.d.ts", "devDependencies": { "@testing-library/vue": "^8.1.0", "@types/node": "^22.15.3", "@typescript-eslint/eslint-plugin": "^8.31.1", "@typescript-eslint/parser": "^8.31.1", "@vue/test-utils": "^2.4.6", "eslint": "^9.25.1", "prettier": "^3.5.3", "pusher-js": "^8.4.0", "socket.io-client": "^4.8.1", "typescript": "^5.8.3", "vite": "^6.4.3", "vite-plugin-dts": "^4.5.3", "vitest": "^4.1.8", "laravel-echo": "^2.4.0" }, "peerDependencies": { "pusher-js": "*", "socket.io-client": "*", "vue": "^3.0.0" }, "peerDependenciesMeta": { "pusher-js": { "optional": true }, "socket.io-client": { "optional": true } }, "typesVersions": { "*": { "socket.io-client": [], "pusher-js": [] } }, "engines": { "node": ">=20" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.common.js" } }, "overrides": { "glob": "^9.0.0" }, "scripts": { "build": "vite build && FORMAT=iife vite build", "dev": "vite dev", "lint": "eslint --config eslint.config.mjs \"src/**/*.ts\"", "prepublish": "pnpm run build", "release": "vitest --run && pnpm publish --no-git-checks", "test": "vitest", "format": "prettier --write ." } }