-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "@liquality/safe-wrapper",
"repository": {
"url": "https://github.com/liquality/safe-wrapper.git"
},
"version": "0.0.3",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/**"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"eject": "react-scripts eject",
"lint": "TIMING=1 eslint \"**/*.ts*\"",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/lodash": "^4.14.199",
"@types/node": "^20.8.2",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@safe-global/api-kit": "^1.3.1",
"@safe-global/protocol-kit": "^1.3.0",
"@safe-global/relay-kit": "^1.3.0",
"@safe-global/safe-core-sdk-types": "^2.3.0",
"axios": "^1.5.1",
"ethers": "^5.7.2",
"lodash": "^4.17.21"
},
"publishConfig": {
"access": "public"
}
}