2023-11-15 02:43:20 +09:00
|
|
|
{
|
|
|
|
"name": "@mastodon/streaming",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
2024-10-21 16:28:01 +09:00
|
|
|
"packageManager": "yarn@4.5.1",
|
2023-11-15 02:43:20 +09:00
|
|
|
"engines": {
|
|
|
|
"node": ">=18"
|
|
|
|
},
|
|
|
|
"description": "Mastodon's Streaming Server",
|
|
|
|
"private": true,
|
2024-02-27 23:59:20 +09:00
|
|
|
"type": "module",
|
2023-11-15 02:43:20 +09:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/mastodon/mastodon.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2023-11-28 23:09:21 +09:00
|
|
|
"start": "node ./index.js",
|
2024-01-12 18:09:57 +09:00
|
|
|
"typecheck": "tsc --noEmit"
|
2023-11-15 02:43:20 +09:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-01-04 18:18:03 +09:00
|
|
|
"cors": "^2.8.5",
|
2023-11-15 02:43:20 +09:00
|
|
|
"dotenv": "^16.0.3",
|
|
|
|
"express": "^4.18.2",
|
|
|
|
"ioredis": "^5.3.2",
|
2024-08-30 18:48:54 +09:00
|
|
|
"jsdom": "^25.0.0",
|
2023-11-15 02:43:20 +09:00
|
|
|
"pg": "^8.5.0",
|
|
|
|
"pg-connection-string": "^2.6.0",
|
2024-04-26 23:49:54 +09:00
|
|
|
"pino": "^9.0.0",
|
2024-05-07 02:14:46 +09:00
|
|
|
"pino-http": "^10.0.0",
|
2023-11-15 02:43:20 +09:00
|
|
|
"prom-client": "^15.0.0",
|
2024-06-10 23:29:11 +09:00
|
|
|
"uuid": "^10.0.0",
|
2023-11-15 02:43:20 +09:00
|
|
|
"ws": "^8.12.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-04 18:18:03 +09:00
|
|
|
"@types/cors": "^2.8.16",
|
2023-11-15 02:43:20 +09:00
|
|
|
"@types/express": "^4.17.17",
|
|
|
|
"@types/pg": "^8.6.6",
|
2024-06-21 20:37:15 +09:00
|
|
|
"@types/uuid": "^10.0.0",
|
2023-11-28 23:09:21 +09:00
|
|
|
"@types/ws": "^8.5.9",
|
|
|
|
"eslint-define-config": "^2.0.0",
|
2024-03-21 19:46:14 +09:00
|
|
|
"pino-pretty": "^11.0.0",
|
2023-11-28 23:09:21 +09:00
|
|
|
"typescript": "^5.0.4"
|
2023-11-15 02:43:20 +09:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"bufferutil": "^4.0.7",
|
|
|
|
"utf-8-validate": "^6.0.3"
|
|
|
|
}
|
|
|
|
}
|