-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.2 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
{
"name": "@paybot/contracts",
"version": "1.0.0",
"description": "Smart contracts for Paybot X402 payment protocol",
"type": "module",
"private": true,
"scripts": {
"compile": "bunx --bun hardhat compile",
"test": "bash scripts/test.sh",
"test:watch": "bunx mocha test/**/*.test.ts --watch",
"test:coverage": "bunx hardhat coverage",
"deploy:local": "bun run scripts/deploy.ts",
"node": "bunx --bun hardhat node",
"node:deploy": "sh scripts/start-and-deploy.sh",
"clean": "bunx hardhat clean && rm -rf cache artifacts typechain-types deployments",
"export": "bun run scripts/export-contracts.ts"
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^3.0.7",
"@nomicfoundation/hardhat-viem": "^2.0.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.0",
"@types/node": "^24.10.1",
"chai": "^4.3.0",
"chai-as-promised": "^8.0.2",
"dotenv": "^16.4.0",
"hardhat": "^3.0.0",
"mocha": "^11.7.5",
"tsx": "^4.20.6",
"typescript": "^5.3.0",
"viem": "^2.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0"
}
}