-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "@quantoracle/plugin-quantoracle",
"version": "0.1.0",
"description": "QuantOracle plugin for elizaOS — 63 deterministic quant finance calculators + 10 composite workflows. Black-Scholes, Greeks, risk metrics, Monte Carlo, strategy backtests, rebalance planning, hedging recommendations. x402 USDC payments on Base or Solana.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"logo.png",
"banner.png"
],
"scripts": {
"build": "tsup --format esm --dts",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@elizaos/core": "^2.0.0-alpha.77"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"keywords": [
"elizaos",
"elizaos-plugin",
"quantitative-finance",
"options-pricing",
"black-scholes",
"risk-metrics",
"monte-carlo",
"backtesting",
"portfolio-optimization",
"x402",
"solana"
],
"author": "QuantOracle <hello@quantoracle.dev>",
"license": "MIT",
"homepage": "https://github.com/QuantOracledev/quantoracle",
"repository": {
"type": "git",
"url": "https://github.com/QuantOracledev/quantoracle",
"directory": "integrations/eliza/plugin-quantoracle"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"QUANTORACLE_API_URL": {
"type": "string",
"required": false,
"default": "https://api.quantoracle.dev",
"description": "Base URL for QuantOracle API. Override to use a self-hosted instance."
},
"QUANTORACLE_TIMEOUT_MS": {
"type": "number",
"required": false,
"default": 30000,
"description": "Request timeout in milliseconds"
}
}
}
}