-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.39 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
59
60
61
62
63
{
"name": "@brahimhamichan/wise-cli",
"version": "0.1.2",
"description": "Unofficial open source CLI for Wise Platform API profiles, balances, recipients, quotes, transfers, statements, and raw API calls.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/brahimhamichan/wise-cli.git"
},
"homepage": "https://github.com/brahimhamichan/wise-cli#readme",
"bugs": {
"url": "https://github.com/brahimhamichan/wise-cli/issues"
},
"keywords": [
"wise",
"wise-platform",
"transferwise",
"cli",
"api-client",
"automation",
"developer-tools",
"fintech",
"nodejs",
"payments",
"finance"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"bin": {
"wise": "bin/run.js",
"wise-cli": "bin/run.js"
},
"files": [
"bin/",
"docs/",
"dist/",
"examples/",
"skills.sh.json",
"skills/"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"clean": "rm -rf dist coverage",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run build && npm run test",
"pack:check": "npm pack --dry-run"
},
"dependencies": {
"commander": "^13.1.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.8.3",
"vitest": "^4.1.8"
}
}