-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.25 KB
/
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
{
"name": "@sftsv/synk",
"version": "0.0.5",
"description": "A library for developing offline-first web applications based on async data replication and synchronization between clients and the server",
"type": "commonjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"tsc": "tsc",
"parcel": "parcel",
"example:server": "tsup src/example/websocket-server.ts --format cjs && node dist/websocket-server.js",
"example:client-produce": "tsup src/example/websocket-client-produce.ts --format cjs && node dist/websocket-client-produce.js",
"example:client-watch": "tsup src/example/websocket-client-watch.ts --format cjs && node dist/websocket-client-watch.js",
"example:client-browser": "parcel src/example/browser/index.html"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-only",
"dependencies": {
"glob": "^10.3.10",
"tsup": "^8.0.2",
"ws": "^8.15.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/ws": "^8.5.10",
"@vitest/browser": "^1.1.0",
"@vitest/ui": "^1.1.0",
"parcel": "^2.10.3",
"playwright": "^1.42.1",
"serve": "^14.2.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}