@morpho-labs/gnosis-tx-builder
Version:
Transform an array of transactions into a json for Gnosis Tx-Builder UX
122 lines (121 loc) • 2.99 kB
JSON
{
"name": "@morpho-labs/gnosis-tx-builder",
"version": "2.0.0",
"description": "Transform an array of transactions into a json for Gnosis Tx-Builder UX",
"main": "lib/src/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "eslint ./src --fix",
"prepare": "husky install",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": "git@github.com:morpho-labs/gnosis-tx-builder.git",
"license": "MIT",
"author": {
"name": "Julien (Devatom)",
"email": "julien@morpho.xyz",
"url": "https://github.com/julien-devatom"
},
"engines": {
"node": ">=16.0"
},
"keywords": [
"ethers",
"gnosis",
"txbuilder",
"smart contract"
],
"bugs": {
"url": "https://github.com/morpho-labs/gnosis-tx-builder/issues"
},
"homepage": "https://github.com/morpho-labs/gnosis-tx-builder#readme",
"dependencies": {
"ethers": "^6.9.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"commitizen": "^4.2.5",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.2",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^27.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.7.1",
"ts-jest": "^27.0.5",
"typescript": "^4.7.4"
},
"peerDependencies": {
"ethers": "^6.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}