-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 974 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
{
"name": "@fuseio/fusebox-web-sdk",
"version": "0.3.9",
"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.4.1",
"typechain": "^8.3.2",
"typescript": "~5.2.2"
},
"dependencies": {
"axios": "^1.7.4",
"ethers": "^5.7.2",
"userop": "^0.3.8"
}
}