Files
linea-monorepo/operations/package.json
dependabot[bot] 7b77ce2a26 chore(deps): bump the npm_and_yarn group across 1 directory with 1 update (#1124)
* chore(deps): bump the npm_and_yarn group across 1 directory with 1 update

Bumps the npm_and_yarn group with 1 update in the /operations directory: [axios](https://github.com/axios/axios).


Updates `axios` from 1.8.4 to 1.9.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](https://github.com/axios/axios/compare/v1.8.4...v1.9.0)

Updates `axios` from 1.8.4 to 1.9.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](https://github.com/axios/axios/compare/v1.8.4...v1.9.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.9.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: axios
  dependency-version: 1.9.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix(deps): update pnpm-lock.yaml

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alain Nicolas <alain.nicolas@consensys.net>
2025-06-13 11:29:43 +02:00

62 lines
1.6 KiB
JSON

{
"name": "operations",
"version": "1.0.0",
"description": "Operations scripts",
"author": "Consensys Software Inc.",
"license": "(MIT OR Apache-2.0)",
"scripts": {
"build": "shx rm -rf dist && tsc -p tsconfig.build.json",
"prettier": "prettier -c '**/*.{js,ts,md}'",
"prettier:fix": "prettier -w '**/*.{js,ts,md}'",
"lint": "eslint . --ext .ts",
"lint:fix": "pnpm run lint:ts:fix",
"lint:ts:fix": "eslint . --ext .ts --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest --bail --detectOpenHandles --forceExit",
"clean": "rimraf node_modules dist coverage",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "pnpm run lint",
"prepack": "oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
},
"dependencies": {
"@oclif/core": "4.0.23",
"@oclif/plugin-help": "6.2.13",
"@oclif/plugin-plugins": "5.4.10",
"axios": "1.9.0",
"ethers": "catalog:"
},
"devDependencies": {
"@jest/globals": "catalog:",
"@oclif/test": "4.0.9",
"@types/jest": "catalog:",
"jest": "catalog:",
"jest-mock-extended": "catalog:",
"shx": "0.3.4",
"ts-jest": "catalog:"
},
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"operations": "./bin/run.js"
},
"oclif": {
"bin": "operations",
"dirname": "operations",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " "
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
]
}