-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
37
{
"name": "@fuseio/fusebox-web-sdk",
"version": "0.4.0",
"description": "Fuse Wallet SDK now has a JS implementation, making it even easier to integrate blockchain technology into your mobile apps.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/fuseio/fusebox-web-sdk.git"
},
"scripts": {
"prepare": "npm run build",
"gen:types": "typechain --target=ethers-v5 --out-dir=src/typechain 'abi/*.json'",
"build": "tsc",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "npm run lint --write"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@typechain/ethers-v5": "^11.1.2",
"@types/node": "^22.10.10",
"tslib": "^2.8.1",
"typechain": "^8.3.2",
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.7.9",
"ethers": "^5.7.2",
"permissionless": "^0.2.28",
"userop": "^0.3.8",
"viem": "^2.22.14"
}
}