Remove tsx dependency and rely on Node.js 22.18.0 native TypeScript runner

This commit is contained in:
Hugo Alliaume
2026-02-27 20:17:39 +01:00
parent 359e337791
commit 12d5ad4739

View File

@@ -15,8 +15,8 @@
"main": "dist/translator_controller.js",
"types": "dist/translator_controller.d.ts",
"scripts": {
"build": "tsx ../../../bin/build_package.ts .",
"watch": "tsx ../../../bin/build_package.ts . --watch",
"build": "node ../../../bin/build_package.ts .",
"watch": "node ../../../bin/build_package.ts . --watch",
"test": "pnpm run test:unit && pnpm run test:browser",
"test:unit": "../../../bin/unit_test_package.sh .",
"test:browser": "playwright test",
@@ -43,7 +43,6 @@
"intl-messageformat": "^10.5.11",
"jsdom": "^26.1.0",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}