mirror of
https://github.com/privacy-scaling-explorations/mpc-hello.git
synced 2026-05-11 03:00:27 -04:00
27 lines
600 B
JSON
27 lines
600 B
JSON
{
|
|
"name": "mpc-hello-client-server",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently npm:server npm:client",
|
|
"client": "vite --host 0.0.0.0",
|
|
"server": "tsx ./src/server/main.ts",
|
|
"build": "tsc && vite build"
|
|
},
|
|
"dependencies": {
|
|
"emp-wasm-backend": "^0.2.2",
|
|
"events": "^3.3.0",
|
|
"mpc-framework": "^0.1.4",
|
|
"summon-ts": "^0.3.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ws": "^8.5.13",
|
|
"concurrently": "^9.1.2",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.2.0"
|
|
}
|
|
}
|