-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
79 lines (79 loc) · 3.66 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
73
74
75
76
77
78
79
{
"name": "@cartesi/rollups",
"version": "1.2.0",
"scripts": {
"build": "run-s compile export",
"clean": "run-s clean:hardhat clean:ignored",
"clean:hardhat": "hardhat clean",
"clean:ignored": "rimraf artifacts cache coverage deployments/localhost dist generated-src src/types/*",
"compile": "hardhat compile",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist/src",
"deploy": "run-s deploy:localhost",
"deploy:arbitrum": "hardhat deploy --network arbitrum --export export/abi/arbitrum.json",
"deploy:arbitrum_sepolia": "hardhat deploy --network arbitrum_sepolia --export export/abi/arbitrum_sepolia.json",
"deploy:base": "hardhat deploy --network base --export export/abi/base.json",
"deploy:base_sepolia": "hardhat deploy --network base_sepolia --export export/abi/base_sepolia.json",
"deploy:development": "run-s deploy:localhost",
"deploy:localhost": "hardhat deploy --network localhost --export export/abi/localhost.json",
"deploy:mainnet": "hardhat deploy --network mainnet --export export/abi/mainnet.json",
"deploy:mainnets": "run-s deploy:arbitrum deploy:base deploy:mainnet deploy:optimism",
"deploy:optimism": "hardhat deploy --network optimism --export export/abi/optimism.json",
"deploy:optimism_sepolia": "hardhat deploy --network optimism_sepolia --export export/abi/optimism_sepolia.json",
"deploy:sepolia": "hardhat deploy --network sepolia --export export/abi/sepolia.json",
"deploy:testnets": "run-s deploy:arbitrum_sepolia deploy:base_sepolia deploy:optimism_sepolia deploy:sepolia",
"export": "hardhat export-artifacts export/artifacts --hide-sources --including-empty-bytecode --including-no-public-functions",
"fmt:check": "prettier --check '**/*.sol' '**/*.ts'",
"fmt:write": "prettier --check --write '**/*.sol' '**/*.ts'",
"info": "npm-scripts-info",
"preinstall": "npx only-allow pnpm",
"prepack": "run-s build tsc:prod copy-dts",
"start": "hardhat node",
"tsc": "tsc",
"tsc:prod": "tsc -p tsconfig.prod.json"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-verify": "^2.0.7",
"@safe-global/safe-singleton-factory": "^1.0.26",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"chai": "^5",
"copyfiles": "^2.4.1",
"ethers": "^6.12.1",
"hardhat": "^2.22.4",
"hardhat-deploy": "^0.14.0",
"mocha": "^10.4.0",
"npm-run-all": "^4.1.5",
"npm-scripts-info": "^0.3.9",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"rimraf": "^5.0.7",
"solhint": "^5",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.12",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"viem": "^2"
},
"files": [
"contracts",
"deployments/*/*.json",
"deployments/*/.chainid",
"dist/src",
"dist/deploy/*.js",
"export"
],
"main": "./dist/src/types/index.js",
"types": "./dist/src/types/index.d.ts",
"license": "Apache-2.0",
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}