-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
131 lines (131 loc) · 3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "create-safe-tx",
"version": "1.0.0",
"description": "📜 Useful script to build complex Gnosis Safe transactions involving Gnosis Multisend and/or Zodiac modifiers",
"license": "MIT",
"main": "lib/index.js",
"bin": "lib/cli.js",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=18"
},
"author": {
"name": "Morpho Labs",
"email": "[email protected]",
"url": "https://github.com/morpho-labs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morpho-labs/create-safe-tx.git"
},
"scripts": {
"build": "tsc --build ./tsconfig.build.json",
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"cli": "ts-node src/cli.ts"
},
"keywords": [
"gnosis",
"safe",
"multisend",
"tx",
"builder",
"calldata",
"evm"
],
"bugs": {
"url": "https://github.com/morpho-labs/create-safe-tx/issues"
},
"homepage": "https://github.com/morpho-labs/create-safe-tx#readme",
"dependencies": {
"@inquirer/prompts": "^3.1.1",
"@types/node": "^20.6.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"ethers-multisend": "^2.4.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/command-line-args": "^5.2.1",
"@types/command-line-usage": "^5.0.2",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.198",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": "prettier"
},
"prettier": {
"tabWidth": 2,
"singleQuote": false,
"printWidth": 120,
"importOrder": [
"^@",
"^\\.\\.",
"^\\."
],
"importOrderSeparation": true
},
"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"
]
}
}