-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 989 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 989 Bytes
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": "@electric-sql/durable-session-proxy",
"version": "0.1.0",
"description": "Backend proxy for Durable Session AI DB - Wrapper Protocol implementation for Durable Streams.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"dev": "tsx watch src/dev.ts",
"start": "node dist/index.js",
"test": "vitest"
},
"author": "ElectricSQL",
"license": "Apache-2.0",
"dependencies": {
"@durable-streams/client": "workspace:*",
"@electric-sql/durable-session": "workspace:*",
"@tanstack/db": "workspace:*",
"hono": "^4.4.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@hono/node-server": "^1.13.0",
"@types/node": "^24.10.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^2.1.8"
}
}