-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 996 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 996 Bytes
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
{
"name": "archethic-uco-mcp",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"homepage": "https://github.com/kukapay/chainlink-feeds-mcp",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"start": "node --trace-warnings index.js",
"build": "tsc && chmod 755 build/index.js"
},
"bin": {
"weather": "./build/index.js"
},
"keywords": [
"mcp",
"archethic",
"oracle",
"uco",
"price feed"
],
"author": "",
"license": "ISC",
"description": "An MCP server that provides real-time UCO price data from the Archethic network's OracleChain.",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"https-proxy-agent": "^7.0.6",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
},
"start": "node --trace-warnings index.js",
"files": [
"build"
]
}