-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.09 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
{
"name": "elysia-oauth2",
"version": "2.0.0",
"author": "kravets",
"type": "module",
"keywords": [
"elysia",
"bun",
"oauth2",
"oauth",
"openid",
"google",
"vk",
"discord",
"passport",
"arctic"
],
"description": "Elysia plugin for OAuth 2.0 Authorization Flow with more than 48 providers",
"license": "MIT",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@elysiajs/static": "^1.2.0",
"@types/bun": "^1.1.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/react-dom": "^19.0.2",
"arctic": "^2.3.3",
"cheerio": "^1.0.0",
"elysia": "^1.2.9",
"pkgroll": "^2.6.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"elysia": "^1.2.0",
"arctic": "*"
},
"scripts": {
"prepublishOnly": "bunx pkgroll",
"lint": "bunx @biomejs/biome check ./src/",
"lint:fix": "bun lint --write",
"dev": "bun run --watch tests/test.ts"
},
"overrides": {
"bun-types": "^1.1.42"
},
"files": ["dist"],
"types": "dist/index.d.ts"
}