-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "janusbot",
"version": "0.2.0",
"description": "Self hosted Bot to easy vote in cosmos ecosystem",
"type": "module",
"main": "src/cli/index.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"cli": "bun run src/cli/index.ts",
"format": "prettier --write src/**/*.ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [
"cosmos-ecosystem",
"blockchain",
"telegram",
"bot",
"voting",
"cosmos"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"bun-types": "latest",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"pino-pretty": "^10.3.1",
"prettier": "^3.1.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@cosmjs/crypto": "^0.32.1",
"@cosmjs/proto-signing": "^0.32.1",
"@cosmjs/stargate": "^0.32.1",
"@cosmjs/tendermint-rpc": "^0.32.1",
"@grammyjs/auto-retry": "^1.1.1",
"@inquirer/confirm": "^2.0.15",
"@inquirer/password": "^1.1.14",
"@lavanet/lava-sdk": "^0.33.3",
"ajv": "^8.12.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"grammy": "^1.19.2",
"lowdb": "^6.1.1",
"mathjs": "^12.2.1",
"pino": "^8.17.2",
"telegram-escape": "^1.1.1",
"telegram-format": "^3.0.1",
"toml": "^3.0.0"
}
}