fix(build): tighten TypeScript compatibility and update project build configuration

This commit is contained in:
2026-04-30 15:22:54 +00:00
parent d75486ac6e
commit 554af7752e
14 changed files with 2389 additions and 1962 deletions
+17 -14
View File
@@ -7,7 +7,7 @@
"type": "module",
"scripts": {
"test": "(tstest test/ --verbose)",
"build": "(tsbuild --web --allowimplicitany && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)",
"build": "tsbuild --web && tsbundle",
"buildDocs": "tsdoc"
},
"repository": {
@@ -17,30 +17,30 @@
"author": "Task Venture Capital GmbH",
"license": "MIT",
"bugs": {
"url": "https://community.foss.global/"
"url": "https://code.foss.global/push.rocks/smartsocket/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartsocket",
"dependencies": {
"@api.global/typedrequest-interfaces": "^3.0.19",
"@push.rocks/isohash": "^2.0.1",
"@push.rocks/isounique": "^1.0.5",
"@push.rocks/lik": "^6.2.2",
"@push.rocks/lik": "^6.4.1",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartjson": "^5.2.0",
"@push.rocks/smartlog": "^3.1.10",
"@push.rocks/smartjson": "^6.0.1",
"@push.rocks/smartlog": "^3.2.2",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrx": "^3.0.10",
"@push.rocks/smarttime": "^4.1.1",
"ws": "^8.18.3"
"@push.rocks/smarttime": "^4.2.3",
"ws": "^8.20.0"
},
"devDependencies": {
"@git.zone/tsbuild": "^3.1.2",
"@git.zone/tsbundle": "^2.6.3",
"@git.zone/tsrun": "^2.0.0",
"@git.zone/tstest": "^3.1.3",
"@push.rocks/smartserve": "^1.1.2",
"@types/node": "^24.10.1",
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.1",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@push.rocks/smartserve": "^2.0.4",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1"
},
"private": false,
@@ -53,6 +53,8 @@
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],
@@ -71,5 +73,6 @@
"function routing",
"secure",
"rpc"
]
],
"packageManager": "pnpm@10.28.2"
}