Files
linea-monorepo/operations/package.json
Andrei A. e3d2839fee Feat/30 refactor operational packages (#116)
* refactor Operational packages

* fix: refactor operations package to use oclif

* adjusting Dockerfile

* adjusting github action

* Update all-tools.yml

Signed-off-by: Andrei A. <andrei.alexandru@consensys.net>

* adjusting github action

---------

Signed-off-by: Andrei A. <andrei.alexandru@consensys.net>
Co-authored-by: VGau <victorien.gauch@consensys.net>
2024-10-02 15:55:59 +03:00

60 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": "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": "6.13.2"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@oclif/test": "4.0.9",
"@types/jest": "29.5.13",
"jest": "29.7.0",
"jest-mock-extended": "3.0.5",
"shx": "0.3.4",
"ts-jest": "29.2.5"
},
"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"
]
}