-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.33 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
54
55
56
57
58
{
"name": "@revolut/revolut-x-cli",
"version": "1.0.35",
"description": "Command-line interface for crypto exchange trading",
"keywords": [
"cli",
"trading",
"crypto",
"exchange"
],
"repository": {
"type": "git",
"url": "https://github.com/revolut-engineering/revolut-x-api",
"directory": "cli"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"revx": "dist/bin/revx.js"
},
"directories": {
"test": "tests"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/bin/revx.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\""
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.0.0",
"decimal.js": "^10.6.0",
"@revolut/revolut-x-api": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.4",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20"
}
}