fix(build): modernize project configuration and align test imports with updated tooling

This commit is contained in:
2026-04-30 08:44:40 +00:00
parent e0d82eff25
commit 2e075501d6
13 changed files with 3142 additions and 8038 deletions
+24 -16
View File
@@ -2,7 +2,7 @@
"name": "@push.rocks/smartfs",
"version": "1.5.0",
"private": false,
"description": "a cross platform extendable fs module",
"description": "A cross-platform, extensible filesystem module with pluggable providers and Rust-backed durability.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
@@ -10,19 +10,18 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 120)",
"build": "(tsbuild --web --allowimplicitany && tsrust)",
"build": "(tsbuild --web && tsrust)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.2.6",
"@git.zone/tsbundle": "^2.9.1",
"@git.zone/tsrun": "^2.0.1",
"@git.zone/tsrust": "^1.3.0",
"@git.zone/tstest": "^3.3.0",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^25.3.3"
"@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.3",
"@types/node": "^25.6.0"
},
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34",
"packageManager": "pnpm@10.28.2",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartfs.git"
@@ -38,16 +37,25 @@
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"dist_rust/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
".smartconfig.json",
"license",
"readme.md"
],
"pnpm": {
"overrides": {}
},
"dependencies": {
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartrust": "^1.3.1"
}
"@push.rocks/smartrust": "^1.4.0"
},
"keywords": [
"filesystem",
"fs",
"typescript",
"rust",
"streams",
"transactions",
"watching",
"storage"
]
}