-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 891 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 891 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
38
39
40
{
"name": "tari-console-wallet",
"version": "1.0.0",
"description": "Interactive console wallet example for Tari JavaScript SDK",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"dev": "tsx index.ts",
"clean": "rimraf dist"
},
"keywords": [
"tari",
"wallet",
"console",
"cli",
"cryptocurrency"
],
"author": "The Tari Community",
"license": "BSD-3-Clause",
"dependencies": {
"@tari-project/tarijs-wallet": "workspace:*",
"commander": "^13.0.0",
"inquirer": "^10.5.1",
"chalk": "^7.0.0",
"ora": "^8.1.0",
"table": "^6.8.0"
},
"devDependencies": {
"@types/inquirer": "^10.0.0",
"@types/node": "^22.0.0",
"rimraf": "^6.0.0",
"tsx": "^4.19.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=21.6.0"
}
}