-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "@repnet/agentkit-plugin",
"version": "0.1.2",
"description": "RepNet Reputation Protocol action provider for Coinbase AgentKit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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",
"dev": "tsc --watch",
"pretest": "npm run build -w @repnet/sdk --prefix ../..",
"test": "vitest run"
},
"dependencies": {
"@repnet/sdk": "^0.1.7",
"zod": "^3.22.0"
},
"devDependencies": {
"typescript": "^5.3.0",
"vitest": "4.0.18"
},
"files": [
"dist/"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreddster/Rep.git",
"directory": "packages/agentkit-plugin"
},
"homepage": "https://repnet.wittymermaid.com",
"keywords": [
"repnet",
"coinbase-agentkit",
"agentkit",
"action-provider",
"ai-agents",
"reputation",
"erc-8004",
"base"
],
"peerDependenciesMeta": {
"@coinbase/agentkit": {
"optional": true
}
},
"peerDependencies": {
"@coinbase/agentkit": "^0.10.4"
}
}