This commit is contained in:
2026-04-26 21:47:28 +02:00
parent db373625f5
commit acabd97d01
142 changed files with 1761 additions and 2022 deletions

View File

@@ -3,20 +3,22 @@
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test": "vitest --run",
"build": "npx tsc",
"start": "node dist/main.js",
"dev": "npx tsc && node dist/main.js",
"test": "vitest --run"
"dev": "npx tsc && node dist/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/node": "^25.5.2",
"@types/node": "^25.6.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
"vitest": "^4.1.4"
},
"type": "module"
"type": "module",
"dependencies": {
"process": "^0.11.10"
}
}