chore: publish pearcord-platform from pearcord workspace

This commit is contained in:
Pearcord
2026-05-21 20:51:54 -04:00
commit dc38423a91
4 changed files with 2326 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
node_modules/
package-lock.json
*.log
.DS_Store
pearcord-storage/
+28
View File
@@ -0,0 +1,28 @@
# pearcord-platform
Application facade wiring all Pearcord modules.
Part of **[Pearcord](https://git.ssh.surf/pearcord)** — 100% peer-to-peer community chat on [Pear](https://pear.holepunch.to). No central servers.
## Repository
- **Org:** [`pearcord`](https://git.ssh.surf/pearcord)
- **Clone:** `git clone https://git.ssh.surf/pearcord/pearcord-platform.git`
## Install (npm)
```bash
npm install git+https://git.ssh.surf/pearcord/pearcord-platform.git#main
```
## Stack
Hyperswarm · HyperDB · Protomux · Pear / Bare
## Documentation
See [`pearcord/pearcord-docs`](https://git.ssh.surf/pearcord/pearcord-docs) for architecture, roadmap, and IPC reference.
## License
Pearcord modules are developed for the Pearcord platform. See the org README for contribution guidelines.
+2254
View File
File diff suppressed because it is too large Load Diff
+39
View File
@@ -0,0 +1,39 @@
{
"name": "pearcord-platform",
"version": "0.1.0",
"main": "index.js",
"type": "commonjs",
"dependencies": {
"bare-events": "^2.8.0",
"bare-path": "^3.0.0",
"bare-process": "^4.4.0",
"pearcord-db": "git+https://git.ssh.surf/pearcord/pearcord-db.git#main",
"pearcord-identity": "git+https://git.ssh.surf/pearcord/pearcord-identity.git#main",
"pearcord-guild": "git+https://git.ssh.surf/pearcord/pearcord-guild.git#main",
"pearcord-message": "git+https://git.ssh.surf/pearcord/pearcord-message.git#main",
"pearcord-presence": "git+https://git.ssh.surf/pearcord/pearcord-presence.git#main",
"pearcord-invite": "git+https://git.ssh.surf/pearcord/pearcord-invite.git#main",
"pearcord-dm": "git+https://git.ssh.surf/pearcord/pearcord-dm.git#main",
"pearcord-attachments": "git+https://git.ssh.surf/pearcord/pearcord-attachments.git#main",
"pearcord-drive": "git+https://git.ssh.surf/pearcord/pearcord-drive.git#main",
"pearcord-moderation": "git+https://git.ssh.surf/pearcord/pearcord-moderation.git#main",
"pearcord-voice": "git+https://git.ssh.surf/pearcord/pearcord-voice.git#main",
"pearcord-voice-media": "git+https://git.ssh.surf/pearcord/pearcord-voice-media.git#main",
"pearcord-discovery": "git+https://git.ssh.surf/pearcord/pearcord-discovery.git#main",
"pearcord-embed": "git+https://git.ssh.surf/pearcord/pearcord-embed.git#main",
"pearcord-crypto": "git+https://git.ssh.surf/pearcord/pearcord-crypto.git#main",
"pearcord-threads": "git+https://git.ssh.surf/pearcord/pearcord-threads.git#main",
"pearcord-commands": "git+https://git.ssh.surf/pearcord/pearcord-commands.git#main",
"pearcord-emoji": "git+https://git.ssh.surf/pearcord/pearcord-emoji.git#main",
"pearcord-bot-events": "git+https://git.ssh.surf/pearcord/pearcord-bot-events.git#main",
"pearcord-bot-sdk": "git+https://git.ssh.surf/pearcord/pearcord-bot-sdk.git#main",
"pearcord-bot-limits": "git+https://git.ssh.surf/pearcord/pearcord-bot-limits.git#main",
"pearcord-bot-auth": "git+https://git.ssh.surf/pearcord/pearcord-bot-auth.git#main",
"pearcord-contacts": "git+https://git.ssh.surf/pearcord/pearcord-contacts.git#main",
"pearcord-notifications": "git+https://git.ssh.surf/pearcord/pearcord-notifications.git#main",
"pearcord-settings": "git+https://git.ssh.surf/pearcord/pearcord-settings.git#main",
"pearcord-device-sync": "git+https://git.ssh.surf/pearcord/pearcord-device-sync.git#main",
"hyperswarm": "^4.11.6",
"pearcord-shared": "git+https://git.ssh.surf/pearcord/pearcord-shared.git#main"
}
}