-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "cosmos-tower",
"version": "1.0.0",
"main": "./build/index.js",
"repository": "https://github.com/nysa-network/cosmos-tower",
"author": "albttx <[email protected]>",
"license": "MIT",
"scripts": {
"start": "ts-node ./index.ts",
"dev": "ts-node-dev ./index.ts",
"build": "tsc --build && pkg . --output cosmos-tower",
"build-alpine": "tsc --build && pkg . --targets node18-alpine-x64 --output cosmos-tower",
"test": "jest"
},
"bin": "./build/index.js",
"pkg": {
"scripts": "build/**/*.js",
"targets": ["node18-linux-x64"],
"outputPath": "dist"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.29.4",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/stargate": "^0.29.5",
"@cosmjs/tendermint-rpc": "^0.29.5",
"axios": "^1.2.1",
"bech32": "^2.0.0",
"cosmjs-types": "^0.6.1",
"discord.js": "^14.6.0",
"fs": "^0.0.1-security",
"yaml": "^2.2.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/yargs": "^17.0.22",
"node-ts": "^5.1.2",
"pkg": "^5.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}