-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "fayda",
"version": "0.0.14",
"description": "Better Auth plugin for Fayda.",
"zshy": "./src/index.ts",
"license": "MIT",
"scripts": {
"build": "zshy",
"lint": "biome lint",
"check": "biome check",
"format": "biome format --write",
"check:write": "biome check --write",
"release": "pnpm build && changeset publish",
"version": "pnpm changeset version && pnpm i"
},
"keywords": [
"batter-auth",
"fayda",
"national-id"
],
"author": "frectonz",
"packageManager": "pnpm@10.12.4",
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@changesets/cli": "^2.29.5",
"@types/node": "^24.1.0",
"better-auth": "^1.3.4",
"typescript": "^5.9.2",
"zshy": "^0.3.4"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"peerDependencies": {
"better-auth": "^1.3.4"
},
"dependencies": {
"@better-fetch/fetch": "^1.1.18",
"jose": "^6.0.12"
}
}