-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.09 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
65
66
67
68
69
70
71
72
{
"name": "@ferroxlabs/tvcontrol",
"version": "2.2.0",
"description": "AI remote control for TradingView Desktop — 102 MCP tools driving symbols, indicators, Pine Script, snapshots, sweeps, diagnostics, 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"
},
"keywords": [
"tradingview",
"mcp",
"model-context-protocol",
"pine-script",
"automation",
"technical-analysis"
],
"publishConfig": {
"access": "public"
},
"main": "src/server.js",
"bin": {
"tv": "src/cli/index.js",
"tvcontrol": "src/cli/index.js"
},
"exports": {
".": "./src/server.js",
"./core": "./src/core/index.js"
},
"files": [
"src/",
"scripts/launch_tv_debug*",
"scripts/pine_pull.js",
"scripts/pine_push.js",
"scripts/watchdog_daemon.js",
"skills/",
"agents/",
"examples/mcp-config.example.json",
"CHANGELOG.md",
"docs/UPGRADING.md",
"docs/releases/"
],
"scripts": {
"start": "node src/server.js",
"tv": "node src/cli/index.js",
"lint": "eslint src/ tests/",
"test": "npm run test:offline",
"test:offline": "node scripts/run_offline_tests.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.29.0",
"chrome-remote-interface": "0.34.0"
},
"devDependencies": {
"eslint": "9.39.4"
}
}