-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.75 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
{
"name": "snapshot-safe-sync",
"version": "1.0.0",
"description": "Synchronize Snapshot ⚡ and Safe{Wallet} backends for offchain signatures",
"main": "lib/index.js",
"bin": "lib/cli.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --build ./tsconfig.build.json",
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"lint": "prettier --check src",
"lint:fix": "prettier --write src",
"cli": "ts-node src/cli.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morpho-labs/snapshot-safe-synchronizer.git"
},
"license": "MIT",
"author": {
"name": "Morpho Labs",
"email": "[email protected]",
"url": "https://github.com/morpho-labs"
},
"engines": {
"node": ">=18"
},
"keywords": [
"gnosis",
"safe",
"message",
"EIP-1271",
"snapshot",
"offchain",
"signature"
],
"bugs": {
"url": "https://github.com/morpho-labs/snapshot-safe-synchronizer/issues"
},
"homepage": "https://github.com/morpho-labs/snapshot-safe-synchronizer#readme",
"dependencies": {
"@snapshot-labs/snapshot.js": "^0.5.4",
"ethers": "^6.11.1"
},
"devDependencies": {
"@types/node": "^20.5.2",
"ts-node": "^10.9.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^6.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "prettier"
},
"release": {
"branches": [
"main",
"next"
],
"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"
]
}
}