-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
{
"name": "lucia-adapter-surrealdb",
"version": "0.9.3",
"description": "Unofficial Surrealdb adapter for Lucia",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.cjs",
"type": "module",
"files": [
"**/*"
],
"scripts": {
"build": "tsup",
"test.surreal": "tsx tests/surrealdb2.ts",
"format": "prettier --plugin-search-dir . --write ."
},
"keywords": [
"lucia",
"auth",
"surrealdb",
"authentication",
"adapter"
],
"repository": {
"type": "git",
"url": "https://github.com/var-che/lucia-adapter-surrealdb"
},
"author": "var-che",
"license": "MIT",
"exports": {
".": "./index.js"
},
"dependencies": {
"lucia": "3.x",
"surrealdb.js": "^0.11.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@cloudflare/workers-types": "^4.20230518.0",
"@libsql/client": "^0.3.0",
"@lucia-auth/adapter-test": "^5.0.0",
"@miniflare/d1": "^2.14.0",
"@miniflare/web-sockets": "^2.14.1",
"@types/node": "^20.11.17",
"bun-types": "^1.0.12",
"dotenv": "^16.0.3",
"esno": "^4.0.0",
"lucia": "3.x",
"shx": "^0.3.4",
"surrealdb.js": "^0.11.0",
"tsup": "^8.0.1",
"tsx": "^3.12.6",
"typescript": "^5.3.3"
}
}