forked from guimroque/bako-vault-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 793 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 793 Bytes
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
{
"name": "bako-vault-cli",
"version": "1.0.0",
"description": "CLI para executar transacoes usando predicates Bako sem servidor",
"main": "dist/index.js",
"bin": {
"bako-vault": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node --no-deprecation dist/index.js",
"dev": "tsx --no-deprecation src/index.ts"
},
"keywords": [
"bako",
"fuel",
"predicate",
"multisig",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"bakosafe": "0.6.1",
"commander": "^12.1.0",
"fuels": "0.101.3",
"inquirer": "^9.2.23",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.0",
"tsx": "^4.15.0",
"typescript": "^5.4.5"
}
}