2023-11-14 17:43:20 +00:00
|
|
|
{
|
|
|
|
"name": "@mastodon/streaming",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
2023-11-14 17:52:34 +00:00
|
|
|
"packageManager": "yarn@4.0.2",
|
2023-11-14 17:43:20 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=18"
|
|
|
|
},
|
|
|
|
"description": "Mastodon's Streaming Server",
|
|
|
|
"private": true,
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/mastodon/mastodon.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2023-11-28 14:09:21 +00:00
|
|
|
"start": "node ./index.js",
|
|
|
|
"check:types": "tsc --noEmit"
|
2023-11-14 17:43:20 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"dotenv": "^16.0.3",
|
|
|
|
"express": "^4.18.2",
|
|
|
|
"ioredis": "^5.3.2",
|
2023-11-27 10:06:40 +00:00
|
|
|
"jsdom": "^23.0.0",
|
2023-11-14 17:43:20 +00:00
|
|
|
"npmlog": "^7.0.1",
|
|
|
|
"pg": "^8.5.0",
|
|
|
|
"pg-connection-string": "^2.6.0",
|
|
|
|
"prom-client": "^15.0.0",
|
|
|
|
"uuid": "^9.0.0",
|
|
|
|
"ws": "^8.12.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/express": "^4.17.17",
|
2023-11-23 10:28:52 +00:00
|
|
|
"@types/npmlog": "^7.0.0",
|
2023-11-14 17:43:20 +00:00
|
|
|
"@types/pg": "^8.6.6",
|
2023-11-28 14:09:21 +00:00
|
|
|
"@types/uuid": "^9.0.0",
|
|
|
|
"@types/ws": "^8.5.9",
|
|
|
|
"eslint-define-config": "^2.0.0",
|
|
|
|
"typescript": "^5.0.4"
|
2023-11-14 17:43:20 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"bufferutil": "^4.0.7",
|
|
|
|
"utf-8-validate": "^6.0.3"
|
|
|
|
}
|
|
|
|
}
|