UNPKG

@typechain/web3-v1

Version:

🔌 TypeChain target for Web3-v1

52 lines • 1.49 kB
{ "name": "@typechain/web3-v1", "description": "🔌 TypeChain target for Web3-v1", "keywords": [ "web3", "ethereum", "TypeChain", "TypeScript" ], "version": "6.0.7", "license": "MIT", "repository": "https://github.com/ethereum-ts/Typechain", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**", "static/**", "README.md", "LICENSE" ], "peerDependencies": { "typechain": "^8.3.2", "web3": "^1", "web3-core": "^1", "web3-eth-contract": "^1" }, "devDependencies": { "typechain": "^8.3.2", "test-utils": "1.0.0", "@types/lodash": "^4.14.139", "web3": "^1", "web3-core": "^1", "web3-eth-contract": "^1", "@types/bn.js": "^4.11.6" }, "dependencies": { "lodash": "^4.17.15", "ts-essentials": "^7.0.1" }, "scripts": { "start": "ts-node -T ./src/index.ts", "format": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --check \"./**/*.ts\" README.md", "format:fix": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write \"./**/*.ts\" README.md", "lint": "eslint --ext .ts src", "lint:fix": "pnpm lint --fix", "typecheck": "tsc --noEmit --incremental false --composite false", "clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo", "test": "echo ok", "test:fix": "pnpm lint:fix && pnpm format:fix && pnpm test && pnpm typecheck" } }