zeno-db
Version:
A lightweight, offline-first client-side database with automatic sync capabilities
50 lines (49 loc) • 1 kB
JSON
{
"name": "zeno-db",
"version": "0.1.61",
"description": "A lightweight, offline-first client-side database with automatic sync capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"database",
"indexeddb",
"websocket",
"postgres",
"sync",
"offline-first"
],
"author": "Mijo Kristo",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/pg": "^8.10.9",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"pg": "^8.11.3",
"ws": "^8.13.0"
},
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
}
}
}