-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.02 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.02 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
{
"name": "tradingview-mcp",
"version": "1.0.0",
"description": "MCP bridge for TradingView Desktop via Chrome DevTools Protocol",
"type": "module",
"main": "src/server.js",
"bin": {
"tv": "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": "node --test tests/e2e.test.js tests/pine_analyze.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/e2e.test.js tests/pine_analyze.test.js",
"test:count": "node --test --test-reporter=spec tests/e2e.test.js 2>&1 | tail -5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"chrome-remote-interface": "^0.33.2"
}
}