-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
96 lines (96 loc) · 1.92 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "oslo",
"type": "module",
"version": "1.2.1",
"description": "A collection of auth-related utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"scripts": {
"build": "rm -rf dist/* && tsc --project tsconfig.build.json",
"format": "prettier -w .",
"lint": "eslint src",
"test": "vitest run --sequence.concurrent"
},
"files": [
"/dist/"
],
"exports": {
".": "./dist/index.js",
"./cookie": "./dist/cookie/index.js",
"./crypto": "./dist/crypto/index.js",
"./encoding": "./dist/encoding/index.js",
"./jwt": "./dist/jwt/index.js",
"./oauth2": "./dist/oauth2/index.js",
"./otp": "./dist/otp/index.js",
"./password": "./dist/password/index.js",
"./request": "./dist/request/index.js",
"./webauthn": "./dist/webauthn/index.js"
},
"typesVersions": {
"*": {
".": [
"dist/index.d.ts"
],
"cookie": [
"dist/cookie/index.d.ts"
],
"crypto": [
"dist/crypto/index.d.ts"
],
"encoding": [
"dist/encoding/index.d.ts"
],
"jwt": [
"dist/jwt/index.d.ts"
],
"oauth2": [
"dist/oauth2/index.d.ts"
],
"otp": [
"dist/otp/index.d.ts"
],
"password": [
"dist/password/index.d.ts"
],
"request": [
"dist/request/index.d.ts"
],
"webauthn": [
"dist/webauthn/index.d.ts"
]
}
},
"keywords": [
"auth",
"oauth2",
"jwt",
"crypto",
"webauthn",
"otp",
"encoding",
"auth",
"random"
],
"author": "pilcrowOnPaper",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pilcrowOnPaper/oslo"
},
"devDependencies": {
"@scure/base": "^1.1.3",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"auri": "1.0.2",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@node-rs/argon2": "1.7.0",
"@node-rs/bcrypt": "1.9.0"
}
}