-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 KB
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
{
"name": "@edgefirst-dev/jwt",
"version": "1.3.0",
"description": "A library to simplify using JWT in your application.",
"license": "MIT",
"funding": [
"https://github.com/sponsors/sergiodxa"
],
"author": {
"name": "Sergio Xalambrí",
"email": "hello+oss@sergiodxa.com",
"url": "https://sergiodxa.com"
},
"repository": {
"type": "git",
"url": "https://github.com/edgefirst-dev/jwt"
},
"homepage": "https://edgefirst-dev.github.io/jwt",
"bugs": {
"url": "https://github.com/edgefirst-dev/jwt/issues"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe",
"exports": "bun run ./scripts/exports.ts"
},
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"files": [
"build",
"package.json",
"README.md"
],
"exports": {
".": "./build/index.js",
"./package.json": "./package.json"
},
"dependencies": {
"@edgefirst-dev/data": "0.0.4",
"@remix-run/file-storage": "^0.13.0",
"jose": "^6.1.1",
"type-fest": "^5.2.0"
},
"peerDependencies": {},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.3.4",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.3.2",
"consola": "^3.4.0",
"msw": "^2.12.1",
"typedoc": "^0.28.14",
"typedoc-plugin-mdn-links": "^5.0.10",
"typescript": "^6.0.2"
}
}