@tokamak-network/thanos-sdk
Version:
Tools for working with Thanos
76 lines • 2.25 kB
JSON
{
"name": "@tokamak-network/thanos-sdk",
"version": "0.0.14",
"description": "Tools for working with Thanos",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/*",
"src/*"
],
"keywords": [
"tokamak",
"thanos",
"ethereum",
"sdk"
],
"homepage": "https://github.com/tokamak-network/tokamak-thanos/tree/main/packages/tokamak/sdk#readme",
"license": "MIT",
"author": "Optimism PBC",
"repository": {
"type": "git",
"url": "https://github.com/tokamak-network/tokamak-thanos.git"
},
"devDependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.3.8",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"chai-as-promised": "^7.1.1",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "^2.18.3",
"hardhat-deploy": "^0.11.43",
"isomorphic-fetch": "^3.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typescript": "^5.2.2",
"viem": "^1.18.0",
"vitest": "^0.34.2",
"zod": "^3.22.4"
},
"dependencies": {
"@eth-optimism/contracts": "0.6.0",
"lodash": "^4.17.21",
"merkletreejs": "^0.3.10",
"rlp": "^2.2.7",
"semver": "^7.6.0",
"@tokamak-network/core-utils": "0.0.2",
"@tokamak-network/thanos-contracts": "0.0.7"
},
"peerDependencies": {
"ethers": "^5"
},
"scripts": {
"all": "pnpm clean && pnpm build && pnpm test && pnpm lint:fix && pnpm lint",
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist/ ./tsconfig.tsbuildinfo",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm lint:fix && pnpm lint:check",
"lint:check": "eslint . --max-warnings=0",
"lint:fix": "pnpm lint:check --fix",
"pre-commit": "lint-staged",
"test": "hardhat test",
"test:next": "vitest",
"test:next:run": "vitest run",
"test:coverage": "nyc hardhat test && nyc merge .nyc_output coverage.json",
"autogen:docs": "typedoc --out docs src/index.ts"
}
}