-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
35 lines (35 loc) · 958 Bytes
/
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
{
"name": "biconomy-sdk-cli",
"version": "1.0.0",
"description": "Biconomy SDK SmartAccount",
"main": "scripts/index.js",
"scripts": {
"start": "tsc --noEmit && ts-node scripts/index.ts",
"smartAccount": "tsc --noEmit && ts-node scripts/index.ts",
"link:local": "bun link @biconomy/account",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "bun run lint --apply"
},
"keywords": [],
"license": "ISC",
"dependencies": {
"@biconomy/account": "4.4.5",
"@biconomy/session-file-storage": "^1.0.2",
"chalk": "^4.1.2",
"ethers": "^5.7.2",
"inquirer": "^8.0.0",
"prettier": "^2.8.1",
"viem": "^2.13.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"@biomejs/biome": "1.6.0",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.3.2",
"@types/prettier": "^2.7.3",
"@types/yargs": "^17.0.24",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}