Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@
"packages/**"
],
"scripts": {
"clean": "$npm_execpath workspaces foreach --all run clean",
"build": "$npm_execpath workspaces foreach --all run build",
"test": "$npm_execpath workspaces foreach --all run test"
/* * Use simpler Yarn workspace commands.
* `yarn workspaces foreach` (or just `yarn clean`) is usually cleaner.
* We use `yarn workspaces foreach` for explicit clarity across all packages.
*/
"clean": "yarn workspaces foreach --all run clean",
"build": "yarn workspaces foreach --all run build",
"test": "yarn workspaces foreach --all run test"
},
"resolutions": {
/* * Force specific versions for transitive dependencies to ensure consistency and stability.
* Kept necessary resolutions for critical dev tools.
*/
"@typechain/hardhat": "^9.1.0",
"aptos": "^1.19.0",
"ethereumjs-abi": "0.6.8",
Expand All @@ -20,13 +27,20 @@
"typescript": "~5.1.3"
},
"devDependencies": {
/* * Development dependencies only.
* solhint resolution is handled above, so it is removed here if not explicitly needed.
*/
"@layerzerolabs/prettier-config-next": "^2.0.1",
"@layerzerolabs/solhint-config": "^2.0.1",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"solhint": "^4.0.0"
"rimraf": "^5.0.5"
/* 'solhint' entry is removed as it's defined in resolutions above */
},
"dependenciesMeta": {
/* * Yarn PnP configuration: 'unplugged: true' tells Yarn to use a traditional
* node_modules structure for these packages, often required for tools
* that rely on file system access (e.g., Solidity artifacts).
*/
"@axelar-network/axelar-gmp-sdk-solidity": {
"unplugged": true
},
Expand Down