Four variants of the same sync library (IndexedDB, NeDB, SQLite WASM, sql.js) plus a paste-bin demo app for testing multi-browser sync via shared folders. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
804 B
JSON
30 lines
804 B
JSON
{
|
|
"name": "index-sync-file-sqlite",
|
|
"version": "1.0.0",
|
|
"description": "Local-first key-value and document store backed by SQLite WASM, syncing with a user-selected folder via File System Access API",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": ["local-first", "sqlite", "wasm", "opfs", "file-system-access-api", "key-value", "document-store", "sync"],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@sqlite.org/sqlite-wasm": "3.51.2-build8"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|