-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 1.69 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
{
"name": "@better-auth/utils",
"version": "0.2.3",
"license": "MIT",
"description": "A collection of utilities for better-auth",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"scripts": {
"test": "vitest",
"typecheck": "tsc --noEmit",
"build": "unbuild",
"lint:fix": "biome check . --write"
},
"keywords": [
"auth",
"utils",
"typescript",
"better-auth",
"better-auth-utils"
],
"author": "Bereket Engida",
"repository": {
"type": "git",
"url": "/~https://github.com/better-auth/utils"
},
"dependencies": {
"uncrypto": "^0.1.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.1",
"bumpp": "^9.9.0",
"happy-dom": "^15.11.7",
"unbuild": "^2.0.0",
"vitest": "^2.1.8"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./base32": {
"import": "./dist/base32.mjs",
"require": "./dist/base32.cjs"
},
"./base64": {
"import": "./dist/base64.mjs",
"require": "./dist/base64.cjs"
},
"./binary": {
"import": "./dist/binary.mjs",
"require": "./dist/binary.cjs"
},
"./hash": {
"import": "./dist/hash.mjs",
"require": "./dist/hash.cjs"
},
"./ecdsa": {
"import": "./dist/ecdsa.mjs",
"require": "./dist/ecdsa.cjs"
},
"./hex": {
"import": "./dist/hex.mjs",
"require": "./dist/hex.cjs"
},
"./hmac": {
"import": "./dist/hmac.mjs",
"require": "./dist/hmac.cjs"
},
"./otp": {
"import": "./dist/otp.mjs",
"require": "./dist/otp.cjs"
},
"./random": {
"import": "./dist/random.mjs",
"require": "./dist/random.cjs"
},
"./rsa": {
"import": "./dist/rsa.mjs",
"require": "./dist/rsa.cjs"
}
},
"files": [
"dist"
]
}