tests for voice
All checks were successful
NPM Audit Check / Check NPM audit (push) Successful in -1m32s

This commit is contained in:
2025-08-24 15:11:11 -05:00
parent 7f45387dac
commit 6ab158cee0
7 changed files with 1655 additions and 8 deletions

View File

@@ -20,8 +20,9 @@
"type": "module",
"main": "distribution/index.js",
"scripts": {
"build": "npx tsc",
"start": "node distribution/index.js"
"build": "tsc",
"start": "node distribution/index.js",
"test": "vitest"
},
"dependencies": {
"json5": "2.2.3",
@@ -29,6 +30,7 @@
},
"devDependencies": {
"typescript": "5.9.2",
"@types/node": "24.3.0"
"@types/node": "24.3.0",
"vitest": "3.2.4"
}
}