-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.72 KB
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
{
"name": "safeio",
"version": "0.0.1",
"description": "A npm package for effortless management of Safe multisig wallets.",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"bin": {
"safeio": "./bin/safeio.js",
"safecli": "./bin/safeio.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"safe wallet",
"multisig wallets",
"gnosis safe",
"ethereum wallet",
"wallets commandline",
"batch wallet execution",
"safe"
],
"files": [
"lib",
"package.json",
"README.md",
"README.zh-CN.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ioplustech/safeio.git"
},
"author": "ioplus.tech (https://ioplus.tech)",
"contributors": [
"cosin2077",
"wirender"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/ioplustech/safeio/issues"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@safe-global/protocol-kit": "^4.0.4",
"@safe-global/safe-core-sdk": "^3.3.5",
"@safe-global/safe-core-sdk-types": "^5.0.3",
"@safe-global/safe-gateway-typescript-sdk": "^3.22.2",
"axios": "^1.7.4",
"ethers": "^5.7.2"
}
}