-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1010 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
{
"name": "@vlcn.io/ws-server",
"type": "module",
"version": "0.2.2",
"files": [
"dist",
"src"
],
"module": "dist/index.js",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build",
"watch": "tsc --build --watch",
"test": "vitest run",
"rmtdata": "rm testDbs/*",
"deep-clean": "rm -rf ./dist || true && rm tsconfig.tsbuildinfo || true"
},
"repository": {
"type": "git",
"url": "[email protected]:vlcn-io/js.git",
"directory": "https://github.com/vlcn-io/js/tree/main/js/packages/ws-server"
},
"dependencies": {
"@types/better-sqlite3": "^7.6.8",
"@vlcn.io/crsqlite": "workspace:*",
"@vlcn.io/logger-provider": "workspace:*",
"@vlcn.io/ws-common": "workspace:*",
"better-sqlite3": "^9.2.2",
"chokidar": "^3.5.3",
"throttle-debounce": "^5.0.0",
"winston": "^3.10.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/throttle-debounce": "^5.0.0",
"@types/ws": "^8.5.5",
"vitest": "^0.30.1"
}
}