feat(storage): persist siprouter data in smartdata and smartbucket

This commit is contained in:
2026-05-21 23:35:50 +00:00
parent 04e706715f
commit 3e2fee16c1
14 changed files with 2018 additions and 492 deletions
+15 -2
View File
@@ -4,7 +4,7 @@
"private": true,
"type": "module",
"scripts": {
"bundle": "node node_modules/.pnpm/esbuild@0.27.7/node_modules/esbuild/bin/esbuild ts_web/index.ts --bundle --format=esm --outfile=dist_ts_web/bundle.js --platform=browser --target=es2022 --minify",
"bundle": "esbuild ts_web/index.ts --bundle --format=esm --outfile=dist_ts_web/bundle.js --platform=browser --target=es2022 --minify",
"buildRust": "tsrust",
"build": "pnpm run buildRust && pnpm run bundle",
"build:docker": "tsdocker build --verbose",
@@ -15,6 +15,8 @@
"dependencies": {
"@design.estate/dees-catalog": "^3.81.0",
"@design.estate/dees-element": "^2.2.4",
"@push.rocks/smartbucket": "^4.6.1",
"@push.rocks/smartdata": "^7.1.7",
"@push.rocks/smartrust": "^1.4.0",
"@push.rocks/smartstate": "^2.3.1",
"tsx": "^4.21.0",
@@ -25,6 +27,17 @@
"@git.zone/tsdocker": "^2.2.5",
"@git.zone/tsrust": "^1.3.3",
"@git.zone/tswatch": "^3.3.3",
"@types/ws": "^8.18.1"
"@types/node": "^25.8.0",
"@types/ws": "^8.18.1",
"esbuild": "^0.27.7"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@design.estate/dees-catalog"
],
"onlyBuiltDependencies": [
"esbuild",
"mongodb-memory-server"
]
}
}