Skip to content

Commit 7645820

Browse files
authored
EdgeDB Auth: Express (#805)
1 parent e29d697 commit 7645820

File tree

4 files changed

+1019
-0
lines changed

4 files changed

+1019
-0
lines changed

packages/auth-express/package.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "@edgedb/auth-express",
3+
"description": "Helper library to integrate the EdgeDB Auth extension with Express",
4+
"version": "0.1.0-beta.1",
5+
"author": "EdgeDB <[email protected]>",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/edgedb/edgedb-js.git",
9+
"directory": "packages/auth-express"
10+
},
11+
"license": "Apache-2.0",
12+
"sideEffects": false,
13+
"files": [
14+
"/dist"
15+
],
16+
"exports": {
17+
"./*": "./dist/*/index.js"
18+
},
19+
"scripts": {
20+
"build": "tsc --project tsconfig.json"
21+
},
22+
"devDependencies": {
23+
"@types/express": "^4.17.21",
24+
"@types/node": "^20.8.4",
25+
"edgedb": "^1.3.6",
26+
"express": "^4.18.2",
27+
"typescript": "^5.2.2"
28+
},
29+
"peerDependencies": {
30+
"edgedb": "^1.3.6",
31+
"express": "^4.18.2",
32+
"cookie-parser": "^1.4.6"
33+
},
34+
"dependencies": {
35+
"@edgedb/auth-core": "0.1.0-beta.1"
36+
}
37+
}

0 commit comments

Comments
 (0)