-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "chasm-cli",
"version": "0.3.3",
"description": "CLI tool for setting up Chasm Scout",
"main": "dist/cli.js",
"type": "module",
"scripts": {
"build": "npx tsc && node build.js",
"build-binary": "pkg dist/cli.js --targets node16-linux-x64 --output binaries/cli-linux && pkg dist/cli.js --targets node16-macos-x64 --output binaries/cli-macos && pkg dist/cli.js --targets node16-win-x64 --output binaries/cli-win.exe",
"start": "node dist/cli.js"
},
"files": [
"dist/ascii-art.txt",
"dist/cli.js",
"dist/utils/ascii/ascii-art.txt",
"package.json",
"README.md"
],
"bin": {
"": "./dist/cli.js"
},
"dependencies": {
"@inquirer/prompts": "^5.2.0",
"@walletconnect/ethereum-provider": "^2.14.0",
"dotenv": "^16.4.5",
"execa": "^8.0.1",
"kleur": "^4.1.5",
"ngrok": "^5.0.0-beta.2",
"node-fetch": "^3.3.2",
"ora": "^8.0.1",
"qrcode-terminal": "^0.12.0",
"web3": "^4.11.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.3",
"@types/bun": "latest",
"@types/express": "^4.17.21",
"@types/figlet": "^1.5.8",
"@types/localtunnel": "^2.0.4",
"@types/node": "^20.14.11",
"@types/qrcode": "^1.5.5",
"@types/qrcode-terminal": "^0.12.2",
"@types/yargs": "^17.0.32",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}