-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 920 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
{
"name": "edgedb-auth-solid-start",
"description": "Helper library to integrate the EdgeDB Auth extension with Solid Start",
"version": "0.1.0",
"author": "Huliiiiii",
"repository": {
"type": "git",
"url": "https://github.com/Huliiiiii/edgedb-auth-solid-start.git"
},
"license": "Apache-2.0",
"sideEffects": false,
"files": [
"/src"
],
"exports": {
"./server": "./src/server/index.js",
"./client": "./src/client/index.js"
},
"scripts": {
"typecheck": "tsc --project tsconfig.json --noEmit",
"build": "tsc --project tsconfig.json"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/node": "^20.12.13",
"edgedb": "^1.5.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@solidjs/start": "^1.0.4",
"edgedb": "^1.3.6"
},
"dependencies": {
"@edgedb/auth-core": "0.2.1",
"@solidjs/start": "^1.0.4",
"cookie": "^0.6.0",
"vinxi": "^0.3.14"
},
"type": "module"
}