UNPKG

@supabase/realtime-js

Version:
63 lines 1.84 kB
{ "name": "@supabase/realtime-js", "version": "2.110.2", "description": "Listen to realtime updates to your PostgreSQL database", "keywords": [ "realtime", "phoenix", "elixir", "javascript", "typescript", "firebase", "supabase" ], "homepage": "https://github.com/supabase/supabase-js/tree/master/packages/core/realtime-js", "bugs": "https://github.com/supabase/supabase-js/issues", "files": [ "dist", "src", "migrations", "AGENTS.md" ], "main": "dist/main/index.js", "module": "dist/module/index.js", "types": "dist/module/index.d.ts", "repository": { "type": "git", "url": "https://github.com/supabase/supabase-js.git", "directory": "packages/core/realtime-js" }, "author": "Supabase", "license": "MIT", "dependencies": { "@supabase/phoenix": "0.4.4", "tslib": "2.8.1" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.2", "@types/jsonwebtoken": "^8.5.8", "@vitest/coverage-v8": "^4.1.5", "jsdom": "^26.0.0", "jsonwebtoken": "^9.0.0", "mock-socket": "^9.3.1", "typedoc": "^0.27.9", "typescript": "~5.8.3", "vitest": "4.1.6", "web-worker": "1.2.0" }, "engines": { "node": ">=22.0.0" }, "scripts": { "build": "npm run build:main && npm run build:module", "build:main": "tsc -p tsconfig.json", "build:module": "tsc -p tsconfig.module.json", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage.enabled true --coverage.reporter=text", "docs": "typedoc --options ../../../typedoc.base.mjs src/index.ts --out docs/v2", "docs:json": "typedoc --options ../../../typedoc.base.mjs --json docs/v2/spec.json --excludeExternals src/index.ts", "check-exports": "attw --pack .", "test:ci": "vitest run --coverage" } }