-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1.01 KB
/
package.json
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
36
{
"name": "msca-wallet-demo",
"version": "1.0.0",
"description": "Demonstrates performing operations on MSCA wallet",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"env-config": "cp .env.sample .env",
"token-transfer": "yarn build && yarn start token-transfer",
"sign-hash": "yarn build && yarn start sign-hash"
},
"author": "Circle",
"license": "Apache-2.0",
"dependencies": {
"@walletconnect/ethereum-provider": "^2.17.2",
"command-line-args": "^6.0.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"lodash": "^4.17.21",
"permissionless": "^0.1.31",
"qrcode-terminal": "^0.12.0",
"readline-sync": "^1.4.10",
"viem": "^2.13.10",
"winston": "^3.17.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/command-line-args": "^5.2.3",
"@types/lodash": "^4.17.13",
"@types/readline-sync": "^1.4.8",
"@types/qrcode-terminal": "0.12.0",
"typescript": "^5.6.3"
}
}