-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 849 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 849 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
{
"name": "@livesql/server",
"version": "1.0.0-beta.1",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"description": "LiveSQL server — CDC engine and WebSocket server",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"jsonwebtoken": "^9.0.0",
"pg": "^8.13.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.0",
"@types/pg": "^8.11.0",
"@types/ws": "^8.5.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0"
},
"peerDependencies": {
"@livesql/core": "workspace:*"
}
}