Files
linea-monorepo/sdk/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

38 lines
1.2 KiB
JSON

{
"name": "@consensys/linea-sdk",
"version": "1.0.0",
"author": "Consensys Software Inc.",
"license": "Apache-2.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint:ts": "npx eslint '**/*.ts'",
"lint:ts:fix": "npx eslint --fix '**/*.ts'",
"prettier": "prettier -c '**/*.ts'",
"prettier:fix": "prettier -w '**/*.ts'",
"lint:fix": "pnpm run lint:ts:fix && pnpm run prettier:fix",
"clean": "rimraf dist src/typechain node_modules coverage tsconfig.build.tsbuildinfo",
"build:pre": "pnpm run typechain",
"build": "pnpm run build:pre && tsc -p tsconfig.build.json",
"typechain": "typechain --target ethers-v6 --out-dir ./src/contracts/typechain './src/contracts/abis/*.abi'",
"test": "npx jest --bail --detectOpenHandles --forceExit"
},
"dependencies": {
"ethers": "catalog:",
"lru-cache": "11.0.2"
},
"devDependencies": {
"@jest/globals": "catalog:",
"@typechain/ethers-v6": "catalog:",
"@types/jest": "catalog:",
"jest": "catalog:",
"jest-mock-extended": "catalog:",
"ts-jest": "catalog:",
"typechain": "catalog:"
},
"files": [
"dist"
]
}