-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "cli-lite",
"description": "The cli-lite is a lightweight yet powerful command-line interface designed to make managing Balancer's infrastructure effortless, even for non-technical users.",
"private": false,
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "ts-lib-builder --tsconfig=tsconfig.build.json",
"test": "echo \"Error: tests are executed with npm run test:(e2e|integration|unit|bench)\" && exit 1",
"test:e2e": "vitest run --config=vitest.test-e2e.config.ts",
"test:integration": "vitest run --config vitest.test-integration.config.ts",
"test:unit": "vitest run --config vitest.test-unit.config.ts",
"test:bench": "vitest bench",
"watch-test:e2e": "vitest --config=vitest.test-e2e.config.ts",
"watch-test:integration": "vitest --config vitest.test-integration.config.ts",
"watch-test:unit": "vitest --config vitest.test-unit.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoin-balancer/cli-lite.git"
},
"keywords": [
"bitcoin",
"trading",
"dollar-cost-averaging",
"dca",
"strategy",
"trading-strategy",
"value-averaging",
"open-source",
"profit",
"investment"
],
"author": "Jesus Graterol",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitcoin-balancer/cli-lite/issues"
},
"homepage": "https://github.com/bitcoin-balancer/cli-lite#readme",
"devDependencies": {
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"ts-lib-builder": "^1.0.5",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"dependencies": {
"@inquirer/prompts": "^7.3.1",
"error-message-utils": "^1.1.2",
"fetch-request-node": "^1.0.7",
"fs-utils-sync": "^1.0.3",
"generate-password": "^1.7.1",
"otplib": "^12.0.1",
"web-utils-kit": "^1.0.5",
"zod": "^3.24.2"
}
}