Files
openclaw/extensions/nostr/package.json
小白 353f97bf10 清理仓库:删除 Git 历史和 PNG 图片
- 删除 .git 目录(历史记录)
- 删除 80 张 PNG 图片
- 保留核心代码、文档、扩展
- 大小从 141M 减少到 90M
2026-03-16 17:34:47 +08:00

37 lines
862 B
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"
},
"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"
},
"releaseChecks": {
"rootDependencyMirrorAllowlist": [
"nostr-tools"
]
}
}
}