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
761 B
JSON
30 lines
761 B
JSON
{
|
|
"name": "index-sync-file-nedb",
|
|
"version": "1.0.0",
|
|
"description": "Local-first key-value and document store backed by NeDB, 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", "nedb", "file-system-access-api", "key-value", "document-store", "sync"],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@seald-io/nedb": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|