-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 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
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
{
"name": "@cryptoflops/walletconnect-sequential-tx",
"version": "1.0.0",
"description": "A TypeScript library for managing sequential blockchain transactions with WalletConnect/Reown integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/walletconnect-sequential-tx.git"
},
"keywords": [
"walletconnect",
"reown",
"web3",
"blockchain",
"ethereum",
"transactions",
"sequential",
"queue"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@reown/appkit": "^1.8.6",
"@reown/appkit-adapter-wagmi": "^1.8.6",
"ethers": "^6.15.0",
"viem": "^2.37.7",
"wagmi": "^2.17.1",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"hardhat": "^2.26.3",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^4.9.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"prettier": "^3.2.5",
"typescript": "^5.9.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}