-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
37
38
39
40
41
42
43
{
"name": "fox-wallet-provider",
"version": "1.0.0",
"main": "build/bundle.js",
"repository": "https://github.com/foxwallet/fox-wallet-provider.git",
"author": "LouisWT <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"dependencies": {
"@metamask/eth-sig-util": "^4.0.1",
"@mysten/sui.js": "^0.33.0",
"@mysten/wallet-standard": "^0.5.5",
"@solana/web3.js": "^1.5.0",
"@wallet-standard/base": "^1.0.1",
"@wallet-standard/core": "^1.0.3",
"bs58": "^4.0.1",
"buffer": "^5.6.0",
"events": "^3.2.0",
"isutf8": "^3.1.1"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"@types/events": "^3.0.0",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"eslint": "^8.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"gts": "^3.1.1",
"jest": "^27.4.7",
"prettier": "^2.8.8",
"rollup": "^3.21.4",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.4"
},
"scripts": {
"lint": "gts lint",
"fix": "gts fix",
"build": "npx rollup -c"
}
}