mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 03:43:56 -05:00
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "@consensys/linea-sdk",
|
|
"version": "1.0.0",
|
|
"author": "Consensys Software Inc.",
|
|
"license": "(MIT OR 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",
|
|
"prepack": "cp ../LICENSE-APACHE . && cp ../LICENSE-MIT . && pnpm run build",
|
|
"postpublish": "rm -rf LICENSE-APACHE LICENSE-MIT",
|
|
"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",
|
|
"LICENSE-APACHE",
|
|
"LICENSE-MIT"
|
|
]
|
|
}
|