BREAKING CHANGE(core): replace the TypeScript database engine with a Rust-backed embedded server and bridge

This commit is contained in:
2026-03-26 19:48:27 +00:00
parent 8ec2046908
commit e23a951dbe
106 changed files with 11567 additions and 10678 deletions

View File

@@ -2,7 +2,7 @@
"name": "@push.rocks/smartdb",
"version": "1.0.1",
"private": false,
"description": "A pure TypeScript MongoDB wire-protocol-compatible database server with pluggable storage, indexing, transactions, and zero external binary dependencies.",
"description": "A MongoDB-compatible embedded database server with wire protocol support, backed by a high-performance Rust engine.",
"exports": {
".": "./dist_ts/index.js"
},
@@ -10,25 +10,22 @@
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test:before": "(tsrust)",
"test": "(tstest test/. --verbose --logfile --timeout 60)",
"build": "(tsbuild tsfolders)",
"build": "(tsbuild tsfolders) && (tsrust)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tsrust": "^1.3.2",
"@git.zone/tstest": "^3.6.1",
"@types/node": "^25.5.0",
"mongodb": "^7.1.1"
},
"dependencies": {
"@push.rocks/smartfs": "^1.5.0",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrx": "^3.0.10",
"bson": "^7.2.0",
"mingo": "^7.2.0"
"@push.rocks/smartrust": "^1.3.2"
},
"browserslist": [
"last 1 chrome versions"
@@ -46,14 +43,14 @@
"readme.md"
],
"keywords": [
"mongodb",
"mongodb-compatible",
"wire protocol",
"typescript database",
"embedded database",
"in-memory database",
"testing",
"local database",
"database server",
"typescript"
"rust"
],
"homepage": "https://code.foss.global/push.rocks/smartdb#readme",
"repository": {