2023-11-14 18:43:20 +01:00
|
|
|
{
|
|
|
|
"name": "@mastodon/streaming",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
2024-09-23 11:02:16 +02:00
|
|
|
"packageManager": "yarn@4.5.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"engines": {
|
|
|
|
"node": ">=18"
|
|
|
|
},
|
|
|
|
"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",
|
2023-11-14 18:43:20 +01:00
|
|
|
"dotenv": "^16.0.3",
|
|
|
|
"express": "^4.18.2",
|
|
|
|
"ioredis": "^5.3.2",
|
2024-08-30 11:48:54 +02:00
|
|
|
"jsdom": "^25.0.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"pg": "^8.5.0",
|
|
|
|
"pg-connection-string": "^2.6.0",
|
2024-04-26 16:49:54 +02:00
|
|
|
"pino": "^9.0.0",
|
2024-05-06 19:14:46 +02:00
|
|
|
"pino-http": "^10.0.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"prom-client": "^15.0.0",
|
2024-06-10 16:29:11 +02:00
|
|
|
"uuid": "^10.0.0",
|
2023-11-14 18:43:20 +01:00
|
|
|
"ws": "^8.12.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-04 10:18:03 +01:00
|
|
|
"@types/cors": "^2.8.16",
|
2023-11-14 18:43:20 +01:00
|
|
|
"@types/express": "^4.17.17",
|
|
|
|
"@types/pg": "^8.6.6",
|
2024-06-21 13:37:15 +02:00
|
|
|
"@types/uuid": "^10.0.0",
|
2023-11-28 15:09:21 +01:00
|
|
|
"@types/ws": "^8.5.9",
|
|
|
|
"eslint-define-config": "^2.0.0",
|
2024-03-21 11:46:14 +01:00
|
|
|
"pino-pretty": "^11.0.0",
|
2023-11-28 15:09:21 +01:00
|
|
|
"typescript": "^5.0.4"
|
2023-11-14 18:43:20 +01:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"bufferutil": "^4.0.7",
|
|
|
|
"utf-8-validate": "^6.0.3"
|
|
|
|
}
|
|
|
|
}
|