fix(build): modernize project configuration and tighten Node.js typing support

This commit is contained in:
2026-04-30 18:19:27 +00:00
parent ff0bc72408
commit 8ed7413e62
13 changed files with 2224 additions and 2657 deletions
+16 -14
View File
@@ -6,8 +6,8 @@
"typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --web --allowimplicitany)",
"test": "tstest test/ --verbose",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
},
"repository": {
@@ -28,26 +28,26 @@
"author": "Smart Coordination GmbH <office@push.rocks> (https://push.rocks)",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartgit/issues"
"url": "https://code.foss.global/push.rocks/smartgit/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartgit",
"dependencies": {
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartfile": "^11.2.7",
"@push.rocks/smartfile": "^13.1.3",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartshell": "^3.3.0",
"@push.rocks/smartshell": "^3.3.8",
"@push.rocks/smartstring": "^4.1.0",
"@push.rocks/smarttime": "^4.1.1",
"@types/diff": "^8.0.0",
"diff": "^8.0.2",
"isomorphic-git": "^1.34.2",
"minimatch": "^10.1.1"
"@push.rocks/smarttime": "^4.2.3",
"diff": "^9.0.0",
"isomorphic-git": "^1.37.6",
"minimatch": "^10.2.5"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.7.1",
"@git.zone/tsrun": "^1.6.2",
"@git.zone/tstest": "^2.7.0"
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
},
"private": false,
"files": [
@@ -59,11 +59,13 @@
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
"packageManager": "pnpm@10.28.2"
}