{ "name": "index-sync-file-sql-js", "version": "1.0.0", "description": "Local-first key-value and document store backed by sql.js (pure JS SQLite), 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", "sql.js", "sqlite", "file-system-access-api", "key-value", "document-store", "sync"], "license": "MIT", "dependencies": { "sql.js": "^1.14.0" }, "devDependencies": { "typescript": "^5.7.0" } }