2023-11-14 18:43:20 +01:00
|
|
|
{
|
|
|
|
|
"name": "@mastodon/streaming",
|
|
|
|
|
"license": "AGPL-3.0-or-later",
|
2025-11-26 17:18:48 +01:00
|
|
|
"packageManager": "yarn@4.12.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"engines": {
|
2025-05-20 16:25:51 +02:00
|
|
|
"node": ">=20"
|
2023-11-14 18:43:20 +01:00
|
|
|
},
|
|
|
|
|
"description": "Mastodon's Streaming Server",
|
|
|
|
|
"private": true,
|
2024-02-27 15:59:20 +01:00
|
|
|
"type": "module",
|
2023-11-14 18:43:20 +01:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/mastodon/mastodon.git"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2023-11-28 15:09:21 +01:00
|
|
|
"start": "node ./index.js",
|
2024-01-12 10:09:57 +01:00
|
|
|
"typecheck": "tsc --noEmit"
|
2023-11-14 18:43:20 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-01-04 10:18:03 +01:00
|
|
|
"cors": "^2.8.5",
|
2026-01-29 15:48:09 +01:00
|
|
|
"dotenv": "^17.0.0",
|
2025-11-06 09:46:08 -05:00
|
|
|
"express": "^5.1.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"ioredis": "^5.3.2",
|
2026-03-17 10:25:04 +01:00
|
|
|
"jsdom": "^29.0.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"pg": "^8.5.0",
|
|
|
|
|
"pg-connection-string": "^2.6.0",
|
2025-11-04 10:56:12 +01:00
|
|
|
"pino": "^10.0.0",
|
2025-11-04 10:28:30 +00:00
|
|
|
"pino-http": "^11.0.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"prom-client": "^15.0.0",
|
2025-09-25 10:54:02 +02:00
|
|
|
"uuid": "^13.0.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"ws": "^8.12.1"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-11 06:24:22 -05:00
|
|
|
"@eslint/js": "^9.39.2",
|
2024-01-04 10:18:03 +01:00
|
|
|
"@types/cors": "^2.8.16",
|
2025-11-06 09:46:08 -05:00
|
|
|
"@types/express": "^5.0.5",
|
2023-11-14 18:43:20 +01:00
|
|
|
"@types/pg": "^8.6.6",
|
2023-11-28 15:09:21 +01:00
|
|
|
"@types/ws": "^8.5.9",
|
2026-02-11 06:24:22 -05:00
|
|
|
"globals": "^17.3.0",
|
2025-01-29 16:18:48 +01:00
|
|
|
"pino-pretty": "^13.0.0",
|
2025-09-25 09:52:37 +02:00
|
|
|
"typescript": "~5.9.0",
|
2026-02-11 06:24:22 -05:00
|
|
|
"typescript-eslint": "^8.55.0"
|
2023-11-14 18:43:20 +01:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {
|
|
|
|
|
"bufferutil": "^4.0.7",
|
|
|
|
|
"utf-8-validate": "^6.0.3"
|
|
|
|
|
}
|
|
|
|
|
}
|