-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 976 Bytes
/
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
{
"name": "@entropic-labs/tendermint-indexer",
"version": "1.0.20",
"types": "dist/src/index.d.ts",
"module": "dist/src/index.js",
"main": "dist/src/index.js",
"type": "module",
"dependencies": {
"@cosmjs/encoding": "^0.32.3",
"@cosmjs/tendermint-rpc": "^0.32.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/pg": "^8.11.6",
"@types/ws": "^8.5.10",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.32.0",
"express": "^4.19.2",
"pg": "^8.12.0",
"pino": "^9.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"ws": "^8.17.0"
},
"scripts": {
"build": "rm -rf dist && tsc && tsc-alias",
"tag": "npm version patch && git push --tags",
"test": "jest"
},
"devDependencies": {
"@types/bun": "latest",
"jest": "^29.7.0",
"tsc-alias": "1.8.10"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"dist/**/*"
]
}