-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.19 KB
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
45
46
47
48
49
50
51
52
53
{
"name": "offline-sync-lab",
"version": "0.1.0",
"private": true,
"description": "An offline-first sync layer that queues mutations while offline, reconciles them on reconnect, and dedupes concurrent writes — with a live demo.",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"demo",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"demo": "node scripts/serve.mjs"
},
"keywords": [
"offline-first",
"offline-sync",
"mutation-queue",
"sync",
"reconciliation",
"dedupe",
"optimistic-updates",
"service-worker",
"indexeddb",
"server-state"
],
"homepage": "https://www.frontendcache.com",
"repository": {
"type": "git",
"url": "git+https://github.com/frontendcache/offline-sync-lab.git"
},
"bugs": {
"url": "https://github.com/frontendcache/offline-sync-lab/issues"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}