mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 07:28:05 -05:00
* feat: split postman and sdk * fix: update postman client and sendMessage script * fix: clean the sdk * fix: update sdk dependencies * fix: remove .env.sample file * fix: remove testing helpers from the build * fix: update gas provider in linea sdk and update postman client * fix: update postman dependencies * fix: update postman dockerfile and fix tests imports and types * fix: remove unused code in the sdk + move typechain folder * fix: remove unused code + fix imports in postman * fix: pnpm lock file issue * fix: import issue * fix: case sensitive file issue * fix: update sdk fees options and update exports * fix: remove postman unused code and adjust imports and tests * fix: update contracts abis + clean error parsing * fix: update postman based on new SDk changes * add readme + remove unused interface in postman * fix: rename Base.ts file to BaseError.ts * fix: rename Base.ts file to BaseError.ts in postman * chore: update readme for the postman * fix: rename maxFeePerGas to maxFeePerGasCap * fix: update DefaultGasProvider fees check * fix: default gas provider test issue * fix: update main ci filter * fix: issue in default gas provider
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "@consensys/linea-postman",
|
|
"version": "1.0.0",
|
|
"author": "Consensys Software Inc.",
|
|
"license": "Apache-2.0",
|
|
"description": "",
|
|
"main": "dist/src/index.js",
|
|
"types": "dist/src/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'",
|
|
"clean": "rimraf dist node_modules coverage tsconfig.build.tsbuildinfo",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"build:runSdk": "tsc ./scripts/runSdk.ts",
|
|
"test": "npx jest --bail --detectOpenHandles --forceExit",
|
|
"lint:fix": "pnpm run lint:ts:fix && pnpm run prettier:fix"
|
|
},
|
|
"dependencies": {
|
|
"@consensys/linea-native-libs": "workspace:*",
|
|
"@consensys/linea-sdk": "workspace:*",
|
|
"better-sqlite3": "11.6.0",
|
|
"class-validator": "0.14.1",
|
|
"dotenv": "16.4.5",
|
|
"ethers": "6.13.4",
|
|
"pg": "8.13.1",
|
|
"typeorm": "0.3.20",
|
|
"typeorm-naming-strategies": "4.1.0",
|
|
"winston": "3.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "29.7.0",
|
|
"@types/jest": "29.5.14",
|
|
"@types/yargs": "17.0.33",
|
|
"jest": "29.7.0",
|
|
"jest-mock-extended": "3.0.5",
|
|
"ts-jest": "29.2.5",
|
|
"yargs": "17.7.2"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
]
|
|
}
|