soda-sdk
Version:
This SDK provides functionalities for AES and RSA encryption schemes, ECDSA signature scheme and some functionalities used for working with sodalabs blockchain.
61 lines (60 loc) • 1.49 kB
JSON
{
"name": "soda-sdk",
"version": "0.0.3-test.20251024003447.0",
"description": "This SDK provides functionalities for AES and RSA encryption schemes, ECDSA signature scheme and some functionalities used for working with sodalabs blockchain.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run test:ts",
"test:ts": "jest",
"test:js": "node --experimental-modules js/test.mjs || echo 'JS tests skipped due to Node.js compatibility'",
"prepublishOnly": "npm run build && npm test"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soda-mpc/soda-sdk"
},
"dependencies": {
"ethers": "^6.13.4",
"node-forge": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@types/chai": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/node-forge": "^1.3.11",
"babel-loader": "^9.2.1",
"chai": "^5.0.3",
"esm": "^3.2.25",
"ethereumjs-util": "^7.1.5",
"mocha": "^10.2.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"license": "MIT",
"keywords": [
"sodalabs",
"mpc",
"gcEVM",
"garbled circuits",
"sdk",
"aes",
"rsa",
"ecdsa",
"encryption",
"blockchain"
]
}