@trpc-limiter/upstash
Version:
Upstash Rate Limiter Adapter for tRPC Limiter.
50 lines • 1.12 kB
JSON
{
"name": "@trpc-limiter/upstash",
"version": "1.0.0",
"private": false,
"keywords": [
"tRPC",
"Limiter",
"Upstash",
"Redis"
],
"repository": "https://github.com/OrJDev/trpc-limiter.git",
"license": "ISC",
"author": "OrJDev",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"dependencies": {
"@trpc-limiter/core": "1.0.0"
},
"devDependencies": {
"@trpc/client": "next",
"@trpc/server": "next",
"@upstash/ratelimit": "^0.1.5",
"@upstash/redis": "^1.18.0",
"typescript": "^4.9.3"
},
"peerDependencies": {
"@trpc/client": "next",
"@trpc/server": "next",
"@upstash/ratelimit": "^0.1.5",
"@upstash/redis": "^1.18.0"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsup --config ../../tsup.config.js",
"clean": "rm -rf dist .turbo node_modules",
"dev": "tsup --config ../../tsup.config.js --watch",
"lint": "eslint . --fix --ext .ts,.tsx,.js,.jsx",
"typecheck": "tsc --noEmit"
}
}