-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1004 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1004 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
{
"packageManager": "pnpm@9.6.0",
"scripts": {
"typecheck": "pnpm run typecheck:wallet && pnpm run typecheck:hardhat && pnpm run typecheck:snowbridge",
"typecheck:wallet": "pnpm -C packages/wallet run typecheck",
"typecheck:hardhat": "pnpm -C packages/hardhat run typecheck",
"typecheck:snowbridge": "pnpm -C packages/snowbridge run typecheck",
"wallet:help": "pnpm -C packages/wallet run help",
"wallet:check-env": "pnpm -C packages/wallet run check-env",
"wallet:create": "pnpm -C packages/wallet run create",
"wallet:get": "pnpm -C packages/wallet run get",
"wallet:faucet": "pnpm -C packages/wallet run faucet",
"wallet:send": "pnpm -C packages/wallet run send",
"wallet:receive": "pnpm -C packages/wallet run receive",
"wallet:balance": "pnpm -C packages/wallet run balance"
},
"dependencies": {
"@coinbase/cdp-sdk": "^1.36.0",
"dotenv": "^17.2.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"typescript": "^5.5.4"
}
}