mirror of
https://github.com/PreMiD/PreMiD.git
synced 2026-04-06 04:41:58 +02:00
26 lines
627 B
JSON
26 lines
627 B
JSON
{
|
|
"name": "@premid/pd",
|
|
"version": "1.0.0",
|
|
"description": "A small service to shorten image urls to get around Discord's 256 character limit",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node --enable-source-maps .",
|
|
"dev": "node --watch --enable-source-maps .",
|
|
"build": "tsc -p tsconfig.app.json"
|
|
},
|
|
"private": true,
|
|
"license": "MPL-2.0",
|
|
"dependencies": {
|
|
"@fastify/cors": "^9.0.1",
|
|
"@fastify/rate-limit": "^9.1.0",
|
|
"@keyv/redis": "^2.8.4",
|
|
"fastify": "^4.26.0",
|
|
"got": "^14.2.0",
|
|
"ioredis": "^5.3.2",
|
|
"ipaddr.js": "^2.1.0",
|
|
"keyv": "^4.5.4",
|
|
"nanoid": "^5.0.5"
|
|
}
|
|
}
|