bun-activitypub/package.json
Gordon Pedersen fd8c2073f0 pivot away from 11ty and instead store data in sqlite
The idea is going to be to build an 11ty frontend that pulls from this back-end
(or perhaps just the database, we'll see)
Also considering a mastodon-compatible api wrapper, or at the very least creating a separate wrapper and completely dropping the existing admin routes.
... ooh, I could do a micropub wrapper, too...

tl;dr: microservices. This is just the activitypub server now.
2023-10-11 16:25:14 +11:00

20 lines
No EOL
468 B
JSON

{
"name": "bun-activitypub",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run --watch src/index.ts",
"ngrok": "ngrok tunnel --label edge=edghts_2VNJvaPttrFlAPWxrGyVKu0s3ad http://localhost:3000"
},
"devDependencies": {
"@types/node-forge": "^1.3.5",
"bun-types": "^1.0.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"node-forge": "^1.3.1",
"using-statement": "^0.4.2"
}
}