-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "elysia-cache",
"version": "0.1.0",
"description": "Plugin for Elysia that for LRU Caching",
"author": {
"name": "arugaz",
"url": "https://github.com/arugaz",
"email": "arugaastri@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/arugaz/elysia-cache"
},
"exports": {
"bun": "./dist/index.js",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"default": "./dist/cjs/index.js"
},
"types": "./src/index.ts",
"homepage": "https://github.com/arugaz/elysia-cache",
"keywords": [
"elysia",
"lru",
"cache"
],
"license": "MIT",
"scripts": {
"dev": "bun run --hot example/index.ts",
"test": "bun test",
"build": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"release": "npm run build && npm run test && npm publish --access public"
},
"devDependencies": {
"@types/node": "^20.5.9",
"bun-types": "^0.8.1",
"elysia": "0.6.19",
"eslint": "^8.48.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"elysia": ">= 0.6.0"
}
}