UNPKG

laravel-echo

Version:

Laravel Echo library for beautiful Pusher and Socket.IO integration

79 lines 1.87 kB
{ "name": "laravel-echo", "version": "2.3.7", "description": "Laravel Echo library for beautiful Pusher and Socket.IO integration", "keywords": [ "laravel", "pusher", "ably" ], "homepage": "https://github.com/laravel/echo/tree/2.x/packages/laravel-echo", "repository": { "type": "git", "url": "https://github.com/laravel/echo" }, "license": "MIT", "author": { "name": "Taylor Otwell" }, "type": "module", "main": "dist/echo.common.js", "module": "dist/echo.js", "types": "dist/echo.d.ts", "devDependencies": { "@types/jquery": "^3.5.32", "@types/node": "^20.17.32", "@typescript-eslint/eslint-plugin": "^8.31.1", "@typescript-eslint/parser": "^8.31.1", "axios": "^1.16.0", "eslint": "^9.25.1", "prettier": "^3.5.3", "pusher-js": "^8.4.0", "socket.io-client": "^4.8.3", "typescript": "^5.8.3", "vite": "^6.4.2", "vite-plugin-dts": "^4.5.3", "vitest": "^3.2.6" }, "peerDependencies": { "pusher-js": "*", "socket.io-client": "*" }, "peerDependenciesMeta": { "pusher-js": { "optional": true }, "socket.io-client": { "optional": true } }, "typesVersions": { "*": { "socket.io-client": [], "pusher-js": [] } }, "engines": { "node": ">=20" }, "exports": { ".": { "types": "./dist/echo.d.ts", "import": "./dist/echo.js", "require": "./dist/echo.common.js" }, "./iife": "./dist/echo.iife.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 ." } }