-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "sqljs-documentstore",
"version": "1.1.0",
"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"
],
"scripts": {
"build": "tsc"
},
"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"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67"
}