-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "elysia-accepts",
"description": "Elysia plugin for accept headers parsing and content negotiation",
"version": "1.0.0",
"author": {
"name": "Igor Morozov",
"url": "https://github.com/morigs",
"email": "morozov.ig.s@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/morigs/elysia-accepts"
},
"main": "./dist/cjs/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"bugs": "https://github.com/morigs/elysia-accepts/issues",
"homepage": "https://github.com/morigs/elysia-accepts",
"keywords": ["elysia", "accept", "negotiation"],
"license": "MIT",
"scripts": {
"test": "bun test",
"build": "bun build.ts",
"lint": "biome lint"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "latest",
"elysia": "^1.1.4",
"tsup": "^8.2.3"
},
"peerDependencies": {
"typescript": "^5.0.0",
"elysia": "^1.1.4"
},
"dependencies": {
"@tinyhttp/accepts": "^2.2.2"
}
}