-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
43
44
45
46
47
48
49
50
{
"name": "sqljs-documentstore",
"version": "1.1.0",
"type": "module",
"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": {
"clean": "rimraf dist .temp",
"build:worker": "tsc --project tsconfig.worker.json && node scripts/buildWorker.cjs",
"build": "pnpm run build:worker && tsc --project tsconfig.app.json",
"test": "vitest",
"e2e": "pnpm run build && node e2e/bundle.cjs && playwright test"
},
"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.4",
"lodash": "^4.18.1",
"sql.js": "^1.14.1"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/async-lock": "^1.4.2",
"@types/lodash": "^4.17.24",
"@types/sql.js": "^1.4.11",
"esbuild": "^0.28.0",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67"
}