-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.44 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.44 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "keylab",
"version": "0.1.37",
"packageManager": "bun@1.2.11",
"type": "module",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"description": "keylab is a library aiming to create and validate JSON Web Tokens without hussle or prerequisitie cryptography knowledge.",
"scripts": {
"test": "vitest run",
"test-with-coverage": "vitest run --coverage",
"coverage:badge": "bun scripts/generate-coverage-badge.ts",
"format": "biome format --write .",
"lint": "biome check .",
"pretty": "bun run format",
"docs:dev": "vitepress dev llm-docs",
"docs:build": "vitepress build llm-docs",
"docs:preview": "vitepress preview llm-docs",
"docs:pages": "rm -rf public && vitepress build llm-docs --outDir public",
"size": "node scripts/file-size ./dist/index.js ./dist/index.js.map",
"lib:build:clean": "rm -rf dist",
"build": "bun run lib:build:clean && tsup",
"build:optimize": "bun scripts/optimize-build.ts",
"lib:publish": "bun run build && bun publish",
"version": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/authdog/keylab.git",
"author": "Authdog"
},
"keywords": [
"jwt",
"jwks",
"authentication",
"security",
"openid",
"token",
"jose"
],
"author": "dbrrt",
"license": "MIT",
"bugs": {
"url": "https://github.com/authdog/keylab/issues"
},
"homepage": "https://github.com/authdog/keylab#readme",
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@swc/core": "^1.3.25",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^1.6.0",
"codecov": "^3.8.3",
"husky": "^9.1.7",
"raw-loader": "^4.0.2",
"terser": "^5.43.1",
"ts-node": "^10.1.0",
"tsup": "^8.5.1",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vitepress": "^1.6.4",
"vitest": "^1.6.0",
"vitest-fetch-mock": "^0.4.0"
},
"dependencies": {
"@noble/curves": "^2.0.1",
"jose": "6.2.2"
}
}