-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "bitcoin-ascii",
"version": "1.0.0",
"description": "Real-time Bitcoin price ASCII candlestick charts with live data from Binance API. Built with TypeScript and markdown support.",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/NeaByteLab/Bitcoin-ASCII.git"
},
"homepage": "https://github.com/NeaByteLab/Bitcoin-ASCII#readme",
"bugs": {
"url": "https://github.com/NeaByteLab/Bitcoin-ASCII/issues"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsx watch src/index.ts",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"readme": "npm run dev",
"archive": "tsx src/index.ts archive",
"archive:date": "tsx src/index.ts archive",
"archive:range": "tsx src/index.ts archive-range",
"archive:historic": "tsx src/index.ts archive-historic"
},
"dependencies": {
"axios": "^1.11.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-sonarjs": "^3.0.4",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"keywords": [
"bitcoin",
"ascii",
"candlestick",
"price",
"charts",
"markdown",
"terminal",
"crypto",
"trading",
"binance",
"api"
],
"author": "NeaByte",
"license": "MIT"
}