-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "elysia-rate-limit",
"version": "4.1.0",
"description": "Rate-limiter for Elysia.js",
"author": {
"name": "rayriffy",
"url": "https://github.com/rayriffy",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rayriffy/elysia-rate-limit.git"
},
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "DEBUG=* bun run --hot example/basic.ts",
"dev:multi": "DEBUG=* bun run --hot example/multiInstance.ts",
"dev:inject": "DEBUG=* bun run --hot example/multiInstanceInjected.ts",
"build": "rm -rf dist && tsc --project tsconfig.esm.json"
},
"keywords": [
"elysia",
"rate",
"limit",
"ratelimit",
"rate-limit"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"dependencies": {
"debug": "4.3.4",
"lru-cache": "10.2.2"
},
"devDependencies": {
"@changesets/cli": "2.27.2",
"@elysiajs/swagger": "^1.0.5",
"@types/debug": "^4.1.12",
"bun-types": "^1.1.8",
"elysia": "1.0.20",
"elysia-ip": "^1.0.6",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"peerDependencies": {
"elysia": ">= 1.0.0"
}
}