-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 868 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@fystack/mpcium-ts",
"version": "0.3.2",
"description": "Mpcium client for typescript",
"main": "dist/index.cjs",
"types": "dist/types/index.d.ts",
"exports": {
"module": "./dist/index.esm.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "bunchee",
"prepub": "npm run build",
"pub": "npm publish --access public"
},
"devDependencies": {
"@polkadot/api": "^15.8.1",
"@polkadot/util": "^13.4.4",
"@polkadot/util-crypto": "^13.4.4",
"@solana/web3.js": "^1.98.2",
"@types/node": "^22.15.3",
"bs58": "^6.0.0",
"bunchee": "^6.5.1",
"ethers": "^6.13.7",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@noble/ed25519": "^2.2.3",
"age-encryption": "^0.2.3",
"nats": "^2.29.3",
"uuid": "^11.1.0"
}
}