-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.06 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.06 KB
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
49
50
51
52
53
{
"name": "minara",
"version": "0.4.7",
"description": "CLI client for Minara.ai — login, trade, deposit/withdraw, chat and more from your terminal.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"minara": "bin/minara.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"keywords": [
"minara",
"cli",
"crypto",
"trading",
"defi",
"ai",
"finance"
],
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"ora": "^8.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.0",
"typescript": "^5.6.0",
"vitest": "^4.0.18"
}
}