jexidb
Version:
JexiDB is a pure JS NPM library for managing data on disk using JSONL efficiently, without the need for a server.
60 lines (59 loc) • 1.56 kB
JSON
{
"name": "jexidb",
"version": "1.1.0",
"description": "JexiDB is a pure JS NPM library for managing data on disk using JSONL efficiently, without the need for a server.",
"main": "./dist/Database.cjs",
"module": "./src/Database.mjs",
"exports": {
".": {
"require": "./dist/Database.cjs",
"import": "./src/Database.mjs"
}
},
"scripts": {
"test": "node --expose-gc test/test.mjs && exit 1",
"prepare": "npx babel src/Database.mjs --plugins @babel/plugin-transform-async-generator-functions --out-file-extension .cjs --out-dir dist"
},
"author": "EdenwareApps",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-async-generator-functions": "^7.25.4",
"@babel/preset-env": "^7.25.4"
},
"dependencies": {
"async-mutex": "^0.5.0",
"p-limit": "^6.1.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdenwareApps/jexidb.git"
},
"keywords": [
"couchdb",
"database",
"nosql",
"pouchdb",
"local-storage",
"db",
"persistent-storage",
"dexiejs",
"embedded-database",
"data-management",
"nedb",
"lowdb",
"dexie",
"offline-database",
"simple-database",
"fast-database",
"jexidb"
],
"bugs": {
"url": "https://github.com/EdenwareApps/jexidb/issues"
},
"homepage": "https://github.com/EdenwareApps/jexidb#readme"
}