forked from vlcn-io/js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 928 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 928 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
41
42
43
44
{
"name": "@vlcn.io/ws-client",
"version": "0.1.0",
"description": "A WebSocket client for syncing databases using CR-SQLite",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"docs": "pnpm --filter @vlcn.io/docs run build"
},
"keywords": [
"websocket",
"sync",
"cr-sqlite",
"database"
],
"author": "vlcn.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vlcn-io/js.git",
"directory": "packages/ws-client"
},
"dependencies": {
"@vlcn.io/xplat-api": "workspace:*"
},
"devDependencies": {
"typescript": "^4.9.5",
"jest": "^29.5.0",
"@types/jest": "^29.5.0"
},
"peerDependencies": {
"@vlcn.io/react": "^0.1.0"
},
"engines": {
"node": ">=14"
},
"workspaces": [
"packages/*",
"packages/docs"
]
}