-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "@elizaos/plugin-para",
"version": "0.1.0",
"description": "Para Wallet integration for Eliza",
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"PARA_API_KEY": {
"type": "string",
"description": "API key for the Para service"
},
"PARA_ENV": {
"type": "string",
"description": "Environment for Para (production or development)",
"default": "production"
}
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@getpara/web-sdk": "^2.3.0",
"@getpara/viem-integration": "^1.0.0",
"viem": "2.21.58",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^18.17.1",
"eslint": "^8.46.0",
"jest": "^29.6.2",
"typescript": "^5.1.6"
}
}