Modernise Romulus-M implementation and improve error handling

This commit is contained in:
2025-09-02 20:44:07 +01:00
parent b12c05f3b6
commit df9c9a708b
14 changed files with 4823 additions and 8224 deletions

View File

@@ -5,7 +5,8 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "ts-standard",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "jest",
"build": "tsc",
"postinstall": "tsc"
@@ -17,12 +18,11 @@
"author": "Butlersaurus",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"@types/jest": "^30.0.0",
"jest": "^30.1.3",
"prettier": "^3.6.2",
"ts-jest": "^27.1.3",
"ts-standard": "^11.0.0",
"typescript": "^4.5.5"
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"jest": {
"verbose": true,
@@ -31,7 +31,7 @@
}
},
"dependencies": {
"@types/uuid": "^8.3.4",
"uuid": "^8.3.2"
"@types/uuid": "^10.0.0",
"uuid": "^11.1.0"
}
}