-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.9 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.9 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
{
"name": "@goplausible/openclaw-algorand-plugin",
"version": "2.0.3",
"publishConfig": {
"access": "public"
},
"description": "Algorand blockchain integration for OpenClaw — by GoPlausible",
"author": "GoPlausible <info@goplausible.com>",
"homepage": "https://goplausible.com",
"repository": {
"type": "git",
"url": "https://github.com/GoPlausible/openclaw-algorand-plugin"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"algorand",
"blockchain",
"mcp",
"x402",
"goplausible"
],
"license": "MIT",
"type": "module",
"main": "index.ts",
"scripts": {
"tag": "git tag -a \"v$npm_package_version\" -m \"v$npm_package_version\" && git push origin \"v$npm_package_version\"",
"retag": "git tag -d \"v$npm_package_version\" 2>/dev/null; git push origin \":refs/tags/v$npm_package_version\" 2>/dev/null; git tag -a \"v$npm_package_version\" -m \"v$npm_package_version\" && git push origin \"v$npm_package_version\"",
"publish:npm": "npm publish --access public",
"publish:clawhub": "clawhub package publish . --family code-plugin --name @goplausible/openclaw-algorand-plugin --display-name 'Algorand Plugin' --version \"$npm_package_version\" --tags latest --source-repo GoPlausible/openclaw-algorand-plugin --source-commit \"$(git rev-parse \"v$npm_package_version\")\" --source-ref \"v$npm_package_version\""
},
"files": [
"index.ts",
"setup.ts",
"lib/",
"skills/",
"memory/",
"openclaw.plugin.json"
],
"openclaw": {
"extensions": ["./index.ts"],
"build": {
"openclawVersion": "2026.3.14"
},
"compat": {
"pluginApi": ">=2026.3.14",
"minGatewayVersion": "2026.3.14"
}
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@goplausible/algorand-mcp": "^4.2.3"
},
"peerDependencies": {
"openclaw": ">=2026.3.14"
},
"devDependencies": {
"@types/node": "^20.0.0"
}
}