-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.28 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.28 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
{
"name": "rusty-jwt",
"version": "1.3.0",
"description": "Rust-based, optionally cached JWT implementation",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"author": "ACO .",
"homepage": "https://github.com/acoBOYZ/rusty-jwt",
"contributors": [
{
"name": "Ahmet Cevdet ÖZTÜRK",
"url": "https://github.com/acoBOYZ"
}
],
"scripts": {
"build": "rm -rf ./types ./lib && tsc",
"prepare": "rm -rf ./types ./lib && bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acoBOYZ/rusty-jwt.git"
},
"bugs": {
"url": "https://github.com/acoBOYZ/rusty-jwt/issues"
},
"keywords": [
"rust",
"node",
"jwt"
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@lukeed/ms": "^2.0.2",
"@node-rs/jsonwebtoken": "^0.5.9",
"@node-rs/jsonwebtoken-linux-arm64-gnu": "^0.5.9",
"@node-rs/xxhash": "^1.7.6",
"@node-rs/xxhash-linux-x64-gnu": "^1.7.6",
"mnemonist": "^0.40.3"
},
"devDependencies": {
"@types/node": "25.0.3",
"typescript": "5.5.4"
}
}