-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 891 Bytes
/
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
{
"name": "lucia-adapter-unstorage",
"version": "1.0.2",
"description": "Unstorage adapter for Lucia (v3)",
"license": "MIT",
"author": "shinosaki",
"keywords": [
"lucia",
"lucia-auth",
"auth",
"authentication",
"adapter",
"unstorage"
],
"repository": {
"type": "git",
"url": "https://github.com/shinosaki/lucia-adapter-unstorage"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
"files": [
"/dist/"
],
"scripts": {
"build": "tsc",
"test": "tsx tests/unstorage.ts",
"auri.build": "pnpm build"
},
"exports": {
".": "./dist/index.js"
},
"peerDependencies": {
"lucia": "3.x",
"unstorage": "1.x"
},
"devDependencies": {
"@lucia-auth/adapter-test": "^5.0.0",
"lucia": "^3.0.1",
"tsx": "^4.7.1",
"unstorage": "^1.10.1"
}
}