-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.89 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
{
"name": "@ferroxlabs/tvcontrol",
"version": "2.1.0",
"description": "AI remote control for TradingView Desktop — 88 MCP tools driving symbols, indicators, Pine Script, snapshots, sweeps, and live chart vision over CDP.",
"type": "module",
"license": "MIT",
"author": "Ferrox Labs",
"homepage": "https://github.com/FerroxLabs/tvcontrol#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/FerroxLabs/tvcontrol.git"
},
"bugs": {
"url": "https://github.com/FerroxLabs/tvcontrol/issues"
},
"main": "src/server.js",
"bin": {
"tv": "src/cli/index.js",
"tvcontrol": "src/cli/index.js"
},
"exports": {
".": "./src/server.js",
"./core": "./src/core/index.js"
},
"scripts": {
"start": "node src/server.js",
"tv": "node src/cli/index.js",
"test": "npm run test:offline",
"test:offline": "node --test tests/sanitization.test.js tests/connection.test.js tests/replay.test.js tests/pine_analyze.test.js tests/cli.test.js tests/fixtures.test.js tests/errors.test.js tests/watchlist.test.js tests/alerts.test.js tests/state.test.js tests/sweep.test.js tests/sweep_parallel.test.js tests/vision.test.js tests/data_get_indicator.test.js tests/telemetry.test.js tests/tool_count.test.js tests/integration.test.js",
"test:e2e": "node --test tests/e2e.test.js",
"test:unit": "node --test tests/pine_analyze.test.js tests/cli.test.js",
"test:cli": "node --test tests/cli.test.js",
"test:all": "node --test tests/e2e.test.js tests/pine_analyze.test.js tests/cli.test.js",
"test:verbose": "node --test --test-reporter=spec tests/sanitization.test.js tests/replay.test.js tests/pine_analyze.test.js",
"test:count": "node --test --test-reporter=spec tests/e2e.test.js 2>&1 | tail -5"
},
"engines": {
"node": ">=18.14.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.1",
"chrome-remote-interface": "0.33.2"
}
}