forked from JonnyBnator/remix-auth-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.49 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"type": "module",
"sideEffects": false,
"name": "@nichtsam/remix-auth-discord",
"version": "3.0.0",
"license": "MIT",
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"discord"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe"
},
"files": ["build", "package.json", "README.md"],
"exports": {
".": "./build/index.js",
"./package.json": "./package.json"
},
"author": {
"name": "Samuel Jensen",
"url": "https://nichtsam.com"
},
"contributors": [
{
"name": "Jonathan Brockhaus",
"email": "[email protected]"
},
{
"name": "Lennart Gastler",
"email": "[email protected]",
"url": "https://lennartgastler.de"
},
{
"name": "Samuel Jensen",
"url": "https://nichtsam.com"
}
],
"homepage": "https://github.com/nichtsam/remix-auth-discord",
"repository": {
"type": "git",
"url": "https://github.com/nichtsam/remix-auth-discord"
},
"bugs": {
"url": "https://github.com/nichtsam/remix-auth-discord/issues"
},
"peerDependencies": {
"remix-auth": "^4.0.0"
},
"dependencies": {
"@mjackson/headers": "^0.9.0",
"arctic": "^3.0.0",
"debug": "^4.3.7"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.1.14",
"@types/debug": "^4.1.12",
"msw": "^2.6.6",
"typedoc": "^0.27.2",
"typedoc-plugin-mdn-links": "^4.0.3",
"typescript": "^5.7.2"
}
}