-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.1 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@kabeep/forex-cli",
"description": "A Node.js Library to convert foreign exchange in terminal",
"version": "0.4.1",
"type": "module",
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"files": [
"dist"
],
"bin": {
"forex": "./dist/cli.js",
"fx": "./dist/cli.js"
},
"scripts": {
"dev": "node --no-warnings --loader ts-node/esm bin/cli.ts",
"prepare": "husky",
"lint": "biome check src bin test --write",
"lint-staged": "lint-staged",
"pretest": "npm run lint",
"test": "vitest run",
"test:watch": "vitest watch",
"build": "tsup",
"watch": "tsup --watch",
"stats": "npm run build && cloc src && size-limit dist/cli.js"
},
"dependencies": {
"@inquirer/confirm": "^6.0.3",
"@inquirer/search": "^4.0.3",
"@kabeep/forex": "^1.0.1",
"@kabeep/node-translate": "^1.1.6",
"clipboardy": "^5.0.2",
"env-paths": "^3.0.0",
"iso-3166-1": "^2.1.1",
"ora": "^9.0.0",
"os-locale": "^6.0.2",
"terminal-table": "^0.0.12",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^25.0.3",
"@types/update-notifier": "^6.0.8",
"@types/yargs": "^17.0.35",
"cloc": "^2.6.0-cloc",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"size-limit": "^12.0.0",
"size-limit-preset-node-lib": "^0.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"author": "Zhang Zixin (kabeep)",
"homepage": "https://github.com/kabeep/forex-cli#readme",
"repository": "git@github.com:kabeep/forex-cli.git",
"bugs": "https://github.com/kabeep/forex-cli/issue",
"keywords": [
"forex",
"foreign",
"exchange",
"currency",
"nodejs",
"cli",
"terminal",
"外汇",
"汇率",
"货币"
],
"engines": {
"node": ">=18"
},
"license": "MIT"
}