-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.21 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
{
"name": "@repnet/plugin-eliza",
"version": "0.1.2",
"description": "RepNet canonical action adapter for ElizaOS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"prebuild": "npm run clean && npm run build -w @repnet/sdk --prefix ../..",
"build": "tsc",
"pretest": "npm run build -w @repnet/sdk --prefix ../..",
"test": "vitest run"
},
"keywords": [
"repnet",
"elizaos",
"eliza",
"plugin",
"reputation",
"ai-agents",
"erc-8004",
"origintrail",
"dkg",
"base"
],
"dependencies": {
"@repnet/sdk": "^0.1.7"
},
"license": "MIT",
"devDependencies": {
"typescript": "^5.3.0",
"vitest": "4.0.18"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreddster/Rep.git",
"directory": "packages/plugin-eliza"
},
"homepage": "https://repnet.wittymermaid.com",
"peerDependenciesMeta": {
"@elizaos/core": {
"optional": true
}
},
"peerDependencies": {
"@elizaos/core": "^1.7.2"
}
}