@delali/sirannon-db 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/package.json +22 -22
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# sirannon-db
|
|
2
2
|
|
|
3
|
+
[](https://github.com/assetcorp/sirannon-db/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@delali/sirannon-db)
|
|
5
|
+
[](https://www.npmjs.com/package/@delali/sirannon-db)
|
|
6
|
+
[](https://www.npmjs.com/package/@delali/sirannon-db)
|
|
7
|
+
[](https://github.com/assetcorp/sirannon-db/blob/main/LICENSE)
|
|
8
|
+
|
|
3
9
|
Turn any SQLite database into a networked data layer with real-time subscriptions. One library gives you connection pooling, change data capture, migrations, scheduled backups, and a client SDK that talks over HTTP or WebSocket.
|
|
4
10
|
|
|
5
11
|
> *sirannon* means 'gate-stream' in Sindarin.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delali/sirannon-db",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"description": "A production-grade library that turns SQLite databases into a networked data layer with real-time subscriptions.",
|
|
6
6
|
"author": "Delali (https://sondelali.com)",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -24,26 +24,6 @@
|
|
|
24
24
|
"embedded",
|
|
25
25
|
"better-sqlite3"
|
|
26
26
|
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "tsup",
|
|
29
|
-
"test": "vitest run",
|
|
30
|
-
"test:coverage": "vitest run --coverage",
|
|
31
|
-
"typecheck": "tsc --noEmit",
|
|
32
|
-
"lint": "biome check .",
|
|
33
|
-
"lint:fix": "biome check --write .",
|
|
34
|
-
"format": "biome format --write .",
|
|
35
|
-
"bench": "node --expose-gc --import tsx benchmarks/run-all.ts",
|
|
36
|
-
"bench:micro": "node --expose-gc --import tsx benchmarks/micro/point-select.ts",
|
|
37
|
-
"bench:ycsb": "node --expose-gc --import tsx benchmarks/ycsb/workload-a.ts",
|
|
38
|
-
"bench:oltp": "node --expose-gc --import tsx benchmarks/oltp/tpc-c-lite.ts",
|
|
39
|
-
"bench:scaling": "node --expose-gc --import tsx benchmarks/scaling/concurrency.ts",
|
|
40
|
-
"bench:cdc": "node --expose-gc --import tsx benchmarks/sirannon/cdc-latency.ts",
|
|
41
|
-
"bench:docker": "node --import tsx benchmarks/run-docker.ts",
|
|
42
|
-
"bench:docker:e2e": "node --import tsx benchmarks/run-e2e.ts",
|
|
43
|
-
"bench:docker:engine": "node --expose-gc --import tsx benchmarks/run-engine.ts",
|
|
44
|
-
"bench:statistical": "node --expose-gc --import tsx benchmarks/run-statistical.ts",
|
|
45
|
-
"bench:charts": "python3 benchmarks/scripts/generate-charts.py benchmarks/results/"
|
|
46
|
-
},
|
|
47
27
|
"exports": {
|
|
48
28
|
".": {
|
|
49
29
|
"types": "./dist/core/index.d.ts",
|
|
@@ -83,5 +63,25 @@
|
|
|
83
63
|
"tsx": "4.21.0",
|
|
84
64
|
"typescript": "5.9.3",
|
|
85
65
|
"vitest": "4.0.18"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "tsup",
|
|
69
|
+
"test": "vitest run",
|
|
70
|
+
"test:coverage": "vitest run --coverage",
|
|
71
|
+
"typecheck": "tsc --noEmit",
|
|
72
|
+
"lint": "biome check .",
|
|
73
|
+
"lint:fix": "biome check --write .",
|
|
74
|
+
"format": "biome format --write .",
|
|
75
|
+
"bench": "node --expose-gc --import tsx benchmarks/run-all.ts",
|
|
76
|
+
"bench:micro": "node --expose-gc --import tsx benchmarks/micro/point-select.ts",
|
|
77
|
+
"bench:ycsb": "node --expose-gc --import tsx benchmarks/ycsb/workload-a.ts",
|
|
78
|
+
"bench:oltp": "node --expose-gc --import tsx benchmarks/oltp/tpc-c-lite.ts",
|
|
79
|
+
"bench:scaling": "node --expose-gc --import tsx benchmarks/scaling/concurrency.ts",
|
|
80
|
+
"bench:cdc": "node --expose-gc --import tsx benchmarks/sirannon/cdc-latency.ts",
|
|
81
|
+
"bench:docker": "node --import tsx benchmarks/run-docker.ts",
|
|
82
|
+
"bench:docker:e2e": "node --import tsx benchmarks/run-e2e.ts",
|
|
83
|
+
"bench:docker:engine": "node --expose-gc --import tsx benchmarks/run-engine.ts",
|
|
84
|
+
"bench:statistical": "node --expose-gc --import tsx benchmarks/run-statistical.ts",
|
|
85
|
+
"bench:charts": "python3 benchmarks/scripts/generate-charts.py benchmarks/results/"
|
|
86
86
|
}
|
|
87
|
-
}
|
|
87
|
+
}
|