-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "@safe-global/safe-modules-deployments",
"version": "2.2.4",
"description": "Collection of Safe modules contract deployments",
"homepage": "https://github.com/safe-global/safe-modules-deployments/",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint --max-warnings 0 src/",
"lint:fix": "pnpm run lint --fix",
"prepare": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-modules-deployments.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/safe-global/safe-modules-deployments/issues"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@types/node": "^20.14.2",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
}
}