-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.21 KB
/
package.json
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
{
"name": "eliza-plugin-starter",
"version": "0.1.0",
"description": "Starter template for creating Eliza plugins with examples for Tavily and Exa search",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc && cp -R src/plugins dist/plugins",
"dev": "tsc -w",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write src",
"mock-eliza": "node --loader ts-node/esm ./src/scripts/load-with-plugin.ts"
},
"keywords": [
"eliza",
"ai",
"plugin",
"tavily",
"exa",
"search"
],
"author": "",
"license": "MIT",
"dependencies": {
"@ai16z/client-direct": "0.1.6-alpha.4",
"@ai16z/eliza": "0.1.6-alpha.4",
"@ai16z/plugin-0g": "0.1.6-alpha.4",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@babel/parser": "^7.26.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}