-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.07 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.07 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
{
"name": "apex-contracts",
"version": "1.0.0",
"description": "APEX (Agent Payment Exchange) Protocol v1 — ERC-8183 kernel + pluggable Evaluator Router + Optimistic Policy",
"scripts": {
"compile": "bunx hardhat compile",
"abis": "bun run compile && bun scripts/export-abi.ts",
"test": "bun test test/unit/",
"e2e:local": "bunx hardhat run test/e2e/runner.ts --network localhost",
"e2e:testnet": "bunx hardhat run test/e2e/runner.ts --network bscTestnet",
"deploy:local": "bunx hardhat run scripts/deploy.ts --network localhost",
"deploy:testnet": "bunx hardhat run scripts/deploy.ts --network bscTestnet",
"verify:testnet": "bunx hardhat run scripts/verify.ts --network bscTestnet",
"fund:local": "bunx hardhat run scripts/fund-local.ts --network localhost",
"node": "bunx hardhat node",
"lint:sol": "bunx solhint 'contracts/**/*.sol'",
"format:check": "bunx prettier --check 'contracts/**/*.sol' '{scripts,test}/**/*.ts' '*.{ts,json,md}' 'docs/**/*.md' 'abis/*.json'",
"format": "bunx prettier --write 'contracts/**/*.sol' '{scripts,test}/**/*.ts' '*.{ts,json,md}' 'docs/**/*.md' 'abis/*.json'"
},
"keywords": [
"apex",
"agent-commerce",
"erc-8183",
"optimistic-oracle",
"smart-contracts"
],
"author": "BNB Chain",
"license": "MIT",
"type": "module",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^4.0.1",
"@nomicfoundation/hardhat-network-helpers": "^3.0.1",
"@nomicfoundation/hardhat-node-test-runner": "^3.0.4",
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^3.0.6",
"@nomicfoundation/hardhat-viem": "^3.0.0",
"@nomicfoundation/hardhat-viem-assertions": "^3.0.2",
"@openzeppelin/contracts-upgradeable": "5.4.0",
"@types/node": "^22.18.8",
"ethers": "^6.15.0",
"hardhat": "^3.0.6",
"prettier": "^3.8.3",
"prettier-plugin-solidity": "^2.3.1",
"solhint": "^6.2.1",
"typescript": "~5.8.0",
"viem": "^2.38.0"
},
"dependencies": {
"@openzeppelin/contracts": "5.4.0",
"dotenv": "^17.2.3"
}
}