You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
{ |
|
"name": "@mastodon/streaming", |
|
"license": "AGPL-3.0-or-later", |
|
"packageManager": "yarn@4.10.3", |
|
"engines": { |
|
"node": ">=20" |
|
}, |
|
"description": "Mastodon's Streaming Server", |
|
"private": true, |
|
"type": "module", |
|
"repository": { |
|
"type": "git", |
|
"url": "https://github.com/mastodon/mastodon.git" |
|
}, |
|
"scripts": { |
|
"start": "node ./index.js", |
|
"typecheck": "tsc --noEmit" |
|
}, |
|
"dependencies": { |
|
"cors": "^2.8.5", |
|
"dotenv": "^16.0.3", |
|
"express": "^4.18.2", |
|
"ioredis": "^5.3.2", |
|
"jsdom": "^27.0.0", |
|
"pg": "^8.5.0", |
|
"pg-connection-string": "^2.6.0", |
|
"pino": "^9.0.0", |
|
"pino-http": "^10.0.0", |
|
"prom-client": "^15.0.0", |
|
"uuid": "^13.0.0", |
|
"ws": "^8.12.1" |
|
}, |
|
"devDependencies": { |
|
"@eslint/js": "^9.23.0", |
|
"@types/cors": "^2.8.16", |
|
"@types/express": "^4.17.17", |
|
"@types/pg": "^8.6.6", |
|
"@types/ws": "^8.5.9", |
|
"globals": "^16.0.0", |
|
"pino-pretty": "^13.0.0", |
|
"typescript": "~5.9.0", |
|
"typescript-eslint": "^8.28.0" |
|
}, |
|
"optionalDependencies": { |
|
"bufferutil": "^4.0.7", |
|
"utf-8-validate": "^6.0.3" |
|
} |
|
}
|
|
|