Files
mpc-framework/package.json
2025-05-05 16:45:53 +10:00

54 lines
1.4 KiB
JSON

{
"name": "mpc-framework",
"version": "0.3.0",
"description": "MPC framework supporting a variety of circuit generators and backends",
"type": "module",
"main": "dist/src/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "mocha --import=tsx tests/**/*.test.ts",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"format": "prettier -c .",
"format:fix": "prettier -w ."
},
"keywords": [
"MPC",
"multi",
"party",
"computation",
"pse",
"cryptography"
],
"author": "Andrew Morris",
"repository": {
"type": "git",
"url": "git+https://github.com/voltrevo/mpc-framework.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"chai": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-xo": "^0.44.0",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"prettier": "^3.4.2",
"emp-wasm-backend": "^0.2.1",
"mocha": "^10.7.0",
"summon-ts": "^0.6.0",
"tsx": "^4.16.5",
"typescript": "^5.4.5"
},
"dependencies": {
"ee-typed": "^0.1.1",
"mpc-framework-common": "^0.3.0",
"msgpackr": "^1.11.0",
"zod": "^3.23.8"
}
}