-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 KB
/
package.json
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
{
"name": "cryptosignal",
"version": "1.1.3",
"description": "A command line interface for cryptocurrency bullish / bearish signals and active trend.",
"type": "module",
"bin": {
"cryptosignal": "./bin/app.js"
},
"targets": {
"default": {
"context": "node",
"distDir": "./bin",
"outputFormat": "esmodule",
"isLibrary": false
}
},
"scripts": {
"start": "node bin/app.js",
"build": "pnpm run clean:build && parcel build ./src/app.ts",
"clean:build": "rimraf .parcel-cache ./bin"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/prompts": "^2.4.9",
"parcel": "^2.12.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"await-to-js": "^3.0.0",
"axios": "^1.6.8",
"bignumber.js": "^9.1.2",
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"ora": "^8.0.1",
"precision-trading-indicators": "^1.1.0",
"prompts": "^2.4.2"
},
"dependencies": {
"await-to-js": "^3.0.0",
"axios": "^1.6.8",
"bignumber.js": "^9.1.2",
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"ora": "^8.0.1",
"precision-trading-indicators": "^1.1.0",
"prompts": "^2.4.2"
}
}