-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
107 lines (107 loc) · 2.63 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
{
"name": "@walleproject/cli",
"version": "1.0.5",
"scripts": {
"start": "node lib/index.js",
"dev": "node esbuild.config.js --watch",
"build": "node esbuild.config.js --minify",
"format": "prettier-eslint --write \"src/**/*.{ts,tsx}\"",
"check": "tsc -noEmit",
"commit": "git-cz",
"precommit": "lint-staged",
"prepare": "husky install"
},
"description": "CLI Crypto Wallet for EVM Networks (Ethereum, Polygon, BNB Chain)",
"contributors": [
{
"name": "Pobepto",
"url": "https://github.com/Pobepto"
},
{
"name": "RealPeha",
"url": "https://github.com/RealPeha"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Pobepto/walle"
},
"bugs": {
"url": "https://github.com/Pobepto/walle/issues"
},
"homepage": "https://github.com/Pobepto/walle#readme",
"keywords": [
"cli",
"terminal",
"crypto",
"ethereum",
"blockchain",
"cryptocurrency",
"wallet",
"evm",
"walletconnect"
],
"bin": {
"walle": "./bin/walle.js"
},
"files": [
"lib/index.js"
],
"dependencies": {
"@json-rpc-tools/utils": "^1.7.6",
"@walletconnect/keyvaluestorage": "^1.0.2",
"@walletconnect/sign-client": "^2.7.4",
"@walletconnect/types": "^2.7.4",
"@walletconnect/utils": "^2.7.4",
"ethers": "^6.3.0",
"filenamify": "^6.0.0",
"ink": "^3.2.0",
"ink-spinner": "^4.0.3",
"ink-text-input": "^4.0.3",
"lokijs": "^1.5.12",
"node-fetch": "^3.3.0",
"react": "^17.0.2",
"zustand": "3.7.2",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@types/node": "^17.0.32",
"@types/react": "^17.0.52",
"@types/zxcvbn": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"cli-boxes": "^2.2.1",
"cli-spinners": "^2.6.1",
"commitizen": "^4.3.0",
"cz-simple-gitmoji": "^1.0.2",
"esbuild": "^0.17.19",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"tsdef": "^0.0.14",
"tslib": "^2.5.1",
"typescript": "^5.0.4",
"yargs": "^17.7.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-simple-gitmoji"
}
}
}