This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 1.74 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
72
73
74
75
76
77
78
79
{
"name": "web-oidc",
"description": "An OpenID Connect client built using only Web APIs",
"version": "0.0.19",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.json --outDir ./build",
"postbuild": "prettier --write \"build/**/*.{js,d.ts}\"",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "vitest",
"lint": "echo \"Not implemented yet\"",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"homepage": "https://github.com/sergiodxa/web-oidc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sergiodxa/web-oidc.git"
},
"bugs": {
"url": "https://github.com/sergiodxa/web-oidc/issues"
},
"author": {
"name": "Sergio Xalambrí",
"url": "https://sergiodxa.com",
"email": "[email protected]"
},
"keywords": [
"openid-connect",
"oidc",
"web",
"apis"
],
"files": [
"build"
],
"exports": {
"./remix": {
"types": "./build/remix.d.ts",
"default": "./build/remix.js"
},
"./hono": {
"types": "./build/hono.d.ts",
"default": "./build/hono.js"
},
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"crypto-js": "^4.1.1",
"jose": "^5.0.1",
"zod": "^3.21.4"
},
"optionalDependencies": {
"hono": "^4.0.4",
"remix-auth": "^4.0.0"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@types/crypto-js": "^4.1.1",
"@vitest/coverage-v8": "^2.0.1",
"dotenv": "^16.3.1",
"hono": "^4.0.4",
"msw": "^2.0.0",
"prettier": "^3.0.0",
"remix-auth": "^4.0.0",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^2.0.1"
},
"sideEffects": false,
"engines": {
"node": ">=14"
}
}