-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.19 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@asterpay/plugin-payments",
"version": "1.0.0",
"description": "AsterPay x402 payment infrastructure for ElizaOS agents - European EUR off-ramp, MiCA-compliant",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"dev": "tsup src/index.ts --format esm --dts --watch",
"test": "bun test",
"lint": "eslint src --ext .ts"
},
"keywords": [
"elizaos",
"elizaos-plugins",
"ai-agents",
"payments",
"x402",
"stablecoin",
"usdc",
"eur",
"europe",
"mica",
"crypto-payments",
"autonomous-agents",
"erc-8004"
],
"author": {
"name": "AsterPay",
"email": "dev@asterpay.io",
"url": "https://asterpay.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AsterPay/plugin-payments.git"
},
"bugs": {
"url": "https://github.com/AsterPay/plugin-payments/issues"
},
"homepage": "https://asterpay.io/elizaos",
"peerDependencies": {
"@elizaos/core": "^1.0.0"
},
"devDependencies": {
"@elizaos/core": "^1.0.0",
"@types/node": "^20.0.0",
"bun-types": "^1.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"ASTERPAY_API_KEY": {
"type": "string",
"description": "Your AsterPay API key from https://asterpay.io/dashboard",
"required": true
},
"ASTERPAY_WALLET_ADDRESS": {
"type": "string",
"description": "Your agent's wallet address for receiving payments",
"required": false
},
"ASTERPAY_EUR_IBAN": {
"type": "string",
"description": "IBAN for EUR off-ramp (SEPA Instant)",
"required": false
},
"ASTERPAY_AUTO_CONVERT": {
"type": "boolean",
"description": "Automatically convert USDC to EUR above threshold",
"default": false
},
"ASTERPAY_CONVERT_THRESHOLD": {
"type": "number",
"description": "USDC threshold for auto-conversion to EUR",
"default": 100
}
}
},
"engines": {
"node": ">=18.0.0"
}
}