-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.53 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
{
"name": "@paulund/bullion-cli",
"version": "1.0.1",
"description": "CLI tool to track precious metal spot prices with historical comparisons",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/paulund/bullion-cli.git"
},
"bugs": {
"url": "https://github.com/paulund/bullion-cli/issues"
},
"homepage": "https://github.com/paulund/bullion-cli#readme",
"bin": {
"bullion": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "tsx src/index.ts",
"build": "rm -rf dist && tsc",
"prepare": "husky",
"gold": "tsx src/index.ts --asset gold",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"release": "semantic-release"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^15.0.0",
"dotenv": "^17.4.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.0",
"eslint": "^10.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.5.3",
"semantic-release": "^25.0.8",
"tsx": "^4.19.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.32.0",
"vitest": "^4.1.8"
}
}