Files
linea-monorepo/operations/package.json
kyzooghost d27699e452 [WIP - Tech Debt] Typescript config cleanup (#1073)
* initial tsconfig.json consolidation

* consolidate skipLibCheck

* more consolidate tsconfig.json

* remove strict duplicates

* remove strict duplicates

* removed lib

* more changes

* more changes

* more changes

* centralize noEmit

* run pnpm dedupe

* catalog for ethers and dotenv

* Revert "catalog for ethers and dotenv"

This reverts commit 8fc18db1c6f754ecbf1b175b34f6ebf08837068a.

* first catalog

* added more dependencies to catalog

* apply catalog to many dev dependencies

* ethers in catalog

* finetune ethers version

* fixes

* empty
2025-06-03 17:33:42 +10:00

61 lines
1.6 KiB
JSON

{
"name": "operations",
"version": "1.0.0",
"description": "Operations scripts",
"author": "Consensys Software Inc.",
"license": "Apache-2.0",
"scripts": {
"build": "shx rm -rf dist && tsc -p tsconfig.build.json",
"prettier": "prettier -c '**/*.{js,ts}'",
"prettier:fix": "prettier -w '**/*.{js,ts}'",
"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.7.7",
"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"
]
}