This commit is contained in:
Lamp 2022-12-26 23:23:19 -06:00
parent fbd6762aba
commit 011ba4c248
3 changed files with 3340 additions and 3320 deletions

2
.npmignore Normal file

@ -0,0 +1,2 @@
keys.sqlite
.env

6626
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -1,12 +1,24 @@
{
"dependencies": {
"@keyv/sqlite": "^3.6.4",
"activitypub-http-signatures": "^2.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"keyv": "^4.5.2",
"node-fetch": "^3.3.0"
},
"type": "module"
"name": "activitypub-proxy",
"version": "0.2.2",
"keywords": ["activitypub","mastodon","misskey","pleroma","fediblock"],
"homepage": "https://activitypub-proxy.cf",
"bugs": "https://gitea.moe/lamp/activitypub-proxy/issues",
"repository": {
"type": "git",
"url": "https://gitea.moe/lamp/activitypub-proxy"
},
"dependencies": {
"@keyv/sqlite": "^3.6.4",
"activitypub-http-signatures": "^2.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"keyv": "^4.5.2",
"node-fetch": "^3.3.0"
},
"type": "module",
"engines": {
"node": ">=15.0.0"
}
}