-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 869 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 869 Bytes
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
{
"name": "@eelkevdbos/elysia-basic-auth",
"version": "2.0.1",
"description": "Basic auth for Elysia.js",
"repository": "https://github.com/eelkevdbos/elysia-basic-auth",
"author": {
"name": "eelkevdbos",
"url": "https://github.com/eelkevdbos",
"email": "eelke@vandenbos.dev"
},
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.esm.json"
},
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": ["dist"],
"keywords": [
"elysia",
"basic-auth"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"bun-types": "latest",
"elysia": "latest",
"prettier": "^3.0.3"
},
"peerDependencies": {
"typescript": "^5.0.0",
"elysia": "^1.0.15"
}
}