This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
72 lines (72 loc) · 1.9 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@walletconnect/solib",
"description": "Solana development utilities and wrappers",
"version": "0.2.3-canary.26",
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/solib/",
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/solib.git"
},
"bugs": {
"url": "https://github.com/walletconnect/solib/issues"
},
"license": "Apache-2.0",
"files": [
"dist"
],
"main": "./dist/solib.js",
"module": "./dist/solib.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build && tsc --emitDeclarationOnly",
"test": "vitest",
"preview": "vite preview",
"lint": "eslint src/**/*.ts",
"prettier": "prettier --check .",
"format": "prettier --check . -w"
},
"keywords": [
"wallet",
"solana",
"web3",
"crypto",
"walletconnect"
],
"dependencies": {
"@ethersproject/sha2": "^5.7.0",
"@walletconnect/universal-provider": "^2.1.3",
"bn.js": "5.2.1",
"borsh": "0.7.0",
"bs58": "5.0.0",
"buffer": "^6.0.3",
"valtio": "1.7.0"
},
"peerDependencies": {
"@solana/web3.js": "1.63.0",
"@web3modal/core": "^2.0.0-beta.5",
"@web3modal/ui": "^2.0.0-beta.5"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@solana/web3.js": "1.63.0",
"@types/bn.js": "5.1.1",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"@web3modal/core": "^2.0.0-beta.5",
"@web3modal/ui": "^2.0.0-beta.5",
"better-sqlite3": "7.6.2",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"react": "18.2.0",
"terser": "^5.15.1",
"tslib": "2.4.0",
"typescript": "4.6.4",
"vite": "3.1.0",
"vitest": "^0.24.3"
}
}