forked from alleyway/add-tradingview-alerts-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@alleyway/add-tradingview-alerts-tool",
"repository": {
"type": "git",
"url": "[email protected]:alleyway/add-tradingview-alerts-tool.git"
},
"bugs": {
"url": "https://github.com/alleyway/add-tradingview-alerts-tool/issues"
},
"description": "Add TradingView Alerts in bulk",
"type": "module",
"main": "./dist/index.js",
"bin": {
"atat": "./dist/cli.js"
},
"files": [
"src",
"dist",
"tsconfig.json"
],
"scripts": {
"build": "npx tsc",
"atat": "./dist/cli.js",
"prepublishOnly": "npm run build",
"show-deprecation": "echo New command-line program - no need for git checkout. Install with \\\"npx @alleyway/create-tradingview-alerts-home\\\" ",
"fetch:binance-futures": "npm run show-deprecation",
"fetch:binance": "npm run show-deprecation",
"fetch:binanceus": "npm run show-deprecation",
"fetch:ftx": "npm run show-deprecation",
"fetch:coinbase": "npm run show-deprecation",
"fetch:bittrex": "npm run show-deprecation",
"add-alerts": "npm run show-deprecation",
"release": "npx release-it",
"release-beta": "npx release-it --preRelease=beta",
"prepare": "husky install"
},
"keywords": [
"tradingview",
"alerts",
"3commas",
"indicator"
],
"author": "Michael Lake",
"license": "MIT",
"version": "1.8.7",
"devDependencies": {
"@release-it/bumper": "^2.0.0",
"husky": "^6.0.0",
"release-it": "^14.6.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@fast-csv/format": "^4.3.5",
"@fast-csv/parse": "^4.3.6",
"commander": "^7.2.0",
"consola": "^2.15.3",
"csv-parser": "^3.0.0",
"fast-csv": "^4.3.6",
"kleur": "^4.1.4",
"node-fetch": "^2.6.1",
"pacote": "^11.3.3",
"prompts": "^2.4.1",
"puppeteer": "^9.1.1",
"regex-parser": "^2.2.11",
"source-map-support": "^0.5.19",
"strip-bom-stream": "^4.0.0",
"yaml": "^1.10.0"
},
"private": false,
"engines": {
"node": ">= 14.0.0"
}
}