generated from PaulRBerg/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.92 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.92 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
{
"name": "@WalletConnectFoundation/contracts",
"description": "Smart contracts for WalletConnect's decentralized infrastructure, including WCT token, staking mechanisms, and cross-chain bridge integration",
"version": "1.0.0",
"author": {
"name": "WalletConnect Foundation",
"url": "https://github.com/WalletConnectFoundation"
},
"homepage": "https://walletconnect.network",
"repository": {
"type": "git",
"url": "git+https://github.com/WalletConnectFoundation/contracts.git"
},
"bugs": {
"url": "https://github.com/WalletConnectFoundation/contracts/issues"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"walletconnect",
"defi",
"staking",
"cross-chain",
"wormhole",
"ntt"
],
"private": true,
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"lint:fmt": "pnpm --filter evm lint:fmt",
"lint:sol": "pnpm --filter evm lint:sol",
"lint": "pnpm run lint:fmt && pnpm run lint:sol && pnpm run prettier:check",
"prettier:check": "pnpm -r prettier:check",
"prettier:write": "pnpm -r prettier:write",
"test": "forge test",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage",
"verify:deployments": "tsx verify-deployments.ts",
"enhance:deployments": "tsx enhance-deployments.ts",
"generate:docs": "tsx generate-deployment-docs.ts",
"sync:deployments": "pnpm run enhance:deployments && pnpm run generate:docs && pnpm run verify:deployments"
},
"devDependencies": {
"viem": "^2.20.0",
"tsx": "^4.7.0",
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}