Merge commit 'd803bfe2b1fe7f5e219e50ac20d6801a0a58ac75' as 'vendor/ruvector'

This commit is contained in:
ruv
2026-02-28 14:39:40 -05:00
7854 changed files with 3522914 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{
"name": "@ruvector/edge-net-tests",
"version": "0.1.0",
"description": "Security and persistence test suite for Edge-Net relay server",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"test:security": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest relay-security.test.ts",
"test:credits": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest credit-persistence.test.ts",
"test:credits-manual": "node manual-credit-test.cjs",
"test:all": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --runInBand",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --watch"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/ws": "^8.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"ws": "^8.16.0"
}
}