61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "@supabase/realtime-js",
|
|
"version": "2.97.0",
|
|
"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"
|
|
],
|
|
"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",
|
|
"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 src/index.ts --out docs/v2",
|
|
"docs:json": "typedoc --json docs/v2/spec.json --excludeExternals src/index.ts",
|
|
"check-exports": "attw --pack .",
|
|
"test:ci": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@types/phoenix": "^1.6.6",
|
|
"@types/ws": "^8.18.1",
|
|
"tslib": "2.8.1",
|
|
"ws": "^8.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/coverage-v8": "^3.1.4",
|
|
"esm": "^3.2.25",
|
|
"jsdom": "^16.7.0",
|
|
"jsdom-global": "3.0.0",
|
|
"mock-socket": "^9.3.1",
|
|
"nyc": "^15.1.0",
|
|
"web-worker": "1.2.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
}
|