UNPKG

sqljs-documentstore

Version:

Minimal, encrypted, sql friendly typed document store, with support for indexed columns. Protects against transactional conflicts

44 lines 1 kB
{ "name": "sqljs-documentstore", "version": "1.2.6", "description": "Minimal, encrypted, sql friendly typed document store, with support for indexed columns. Protects against transactional conflicts", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist", "/src" ], "keywords": [ "SQLite", "DocumentStore", "Document", "Store", "ORM", "Micro", "Typescript", "Generic", "ES7" ], "repository": "https://github.com/dnv-opensource/sqljs-documentstore", "author": "Michael Goeke", "license": "MIT", "private": false, "dependencies": { "async-lock": "^1.4.1", "idb-keyval": "^6.2.2", "lodash": "^4.17.21", "sql.js": "^1.13.0" }, "devDependencies": { "@types/async-lock": "^1.4.2", "@types/lodash": "^4.17.20", "@types/sql.js": "^1.4.9", "typescript": "^5.9.2", "vitest": "^4.1.9" }, "scripts": { "build": "tsc", "test": "vitest run", "test:watch": "vitest" } }