mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-23 07:51:33 +00:00
* fix(plugins): enforce min host versions * fix(plugins): tighten min host version validation * chore(plugins): trim dead min host version code * fix(plugins): handle malformed min host metadata * fix(plugins): key manifest cache by host version
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "@openclaw/nostr",
|
|
"version": "2026.3.14",
|
|
"description": "OpenClaw Nostr channel plugin for NIP-04 encrypted DMs",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"nostr-tools": "^2.23.3",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.3.14"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"channel": {
|
|
"id": "nostr",
|
|
"label": "Nostr",
|
|
"selectionLabel": "Nostr (NIP-04 DMs)",
|
|
"docsPath": "/channels/nostr",
|
|
"docsLabel": "nostr",
|
|
"blurb": "Decentralized protocol; encrypted DMs via NIP-04.",
|
|
"order": 55,
|
|
"quickstartAllowFrom": true
|
|
},
|
|
"install": {
|
|
"npmSpec": "@openclaw/nostr",
|
|
"localPath": "extensions/nostr",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.3.14"
|
|
},
|
|
"release": {
|
|
"publishToNpm": true
|
|
}
|
|
}
|
|
}
|