mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 03:43:56 -05:00
* 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
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "@consensys/linea-native-libs",
|
|
"version": "1.2.0",
|
|
"description": "Linea native libs",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"postbuild": "bash ./src/scripts/build.sh",
|
|
"build": "tsup --tsconfig tsconfig.build.json",
|
|
"clean": "rimraf dist build coverage node_modules",
|
|
"test": "jest --bail --detectOpenHandles --forceExit && jest-it-up",
|
|
"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"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@jest/globals": "catalog:",
|
|
"@types/jest": "catalog:",
|
|
"@types/unzipper": "0.10.11",
|
|
"dotenv": "catalog:",
|
|
"jest": "catalog:",
|
|
"jest-it-up": "4.0.1",
|
|
"ts-jest": "catalog:",
|
|
"tsup": "8.4.0",
|
|
"unzipper": "0.12.3",
|
|
"viem": "2.29.1"
|
|
},
|
|
"dependencies": {
|
|
"koffi": "2.11.0"
|
|
}
|
|
}
|