-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.25 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "plugin-octav",
"description": "Fetch blockchain data using Octav API",
"version": "0.1.2",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageType": "plugin",
"platform": "node",
"license": "MIT",
"author": "Octav-Labs",
"keywords": [
"plugin",
"elizaos",
"octav",
"portfolio",
"defi",
"blockchain"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wpoulin/plugin-octav.git"
},
"homepage": "https://elizaos.ai",
"bugs": {
"url": "https://github.com/wpoulin/plugin-octav/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md",
".npmignore",
".gitignore",
"package.json"
],
"dependencies": {
"@elizaos/core": "1.5.7",
"@elizaos/plugin-openai": "1.0.11",
"zod": "^3.24.4"
},
"devDependencies": {
"@elizaos/cli": "1.5.7",
"@types/bun": "^1.2.21",
"dotenv": "16.4.5",
"prettier": "3.5.3",
"typescript": "5.8.2"
},
"scripts": {
"start": "elizaos start",
"dev": "elizaos dev",
"build": "bun run build.ts",
"build:watch": "bun run build.ts --watch",
"postinstall": "node -e \"const fs=require('fs');const path=require('path');const zodPath=path.join('node_modules','zod');if(fs.existsSync(zodPath)){fs.writeFileSync(path.join(zodPath,'v3.js'),'module.exports=require(\\\"./lib/index.js\\\");');fs.writeFileSync(path.join(zodPath,'v3.d.ts'),'export * from \\\"./lib/index\\\";');}\" || true",
"test": "bun test",
"format": "prettier --write ./src"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"// Note": "langchain 0.3.30 fixes @langchain/core zod/v3 import issues",
"zod": "^3.24.4",
"langchain": "0.3.30",
"@langchain/core": "0.3.30"
},
"overrides": {
"@langchain/core": "0.3.30"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"OCTAV_API_KEY": {
"type": "string",
"description": "API key for Octav",
"required": true
}
}
},
"npmPackage": "plugin-octav"
}