-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.5 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.5 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
{
"name": "@blockrun/elizaos-plugin",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"description": "BlockRun x402 pay-per-request AI plugin for ElizaOS - enables agents to make micropayments for AI API calls on Base",
"keywords": [
"elizaos",
"plugin",
"blockrun",
"x402",
"micropayments",
"ai",
"base",
"usdc"
],
"author": "BlockRun <hello@blockrun.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blockrunai/elizaos-plugin-blockrun"
},
"homepage": "https://blockrun.ai",
"bugs": {
"url": "https://github.com/blockrunai/elizaos-plugin-blockrun/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@blockrun/llm": "^0.1.1",
"viem": "^2.21.0"
},
"peerDependencies": {
"@elizaos/core": ">=1.0.0"
},
"devDependencies": {
"@elizaos/core": "^1.0.0",
"@types/node": "^22.10.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist node_modules",
"prepublishOnly": "npm run build",
"test": "bun test",
"test:e2e": "bun run test-e2e.ts"
},
"publishConfig": {
"access": "public"
}
}