-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 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
{
"name": "@milady-plugins/vincent-finance",
"version": "0.1.0",
"description": "Vincent-powered Hyperliquid trading and Polymarket prediction market integration for milady",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"@elizaos/core": ">=2.0.0-alpha.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@elizaos/core": "^2.0.0-alpha.33",
"@types/node": "^25.4.0",
"tsup": "^8.4.0",
"typescript": "^5.9.0",
"vitest": "^3.0.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"VINCENT_APP_ID": {
"type": "string",
"description": "Vincent App ID from the on-chain App Registry",
"required": true
},
"VINCENT_MCP_TRANSPORT": {
"type": "string",
"description": "MCP transport mode: 'stdio' or 'http'",
"default": "stdio"
},
"VINCENT_MCP_SERVER_URL": {
"type": "string",
"description": "Vincent MCP server URL (required when transport is 'http')"
},
"VINCENT_MCP_SERVER_BIN": {
"type": "string",
"description": "Path to Vincent MCP server binary (STDIO mode)",
"default": "npx @lit-protocol/vincent-mcp-server"
}
}
}
}