-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "activitypub-bot",
"version": "0.1.0-dev",
"description": "server-side ActivityPub bot framework",
"type": "module",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test node --test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/evanp/activitypub-bot.git"
},
"keywords": [
"activitypub",
"fediverse",
"bots",
"server"
],
"author": "Evan Prodromou <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/evanp/activitypub-bot/issues"
},
"homepage": "https://github.com/evanp/activitypub-bot#readme",
"dependencies": {
"@isaacs/ttlcache": "^1.4.1",
"activitystrea.ms": "^3.1.0",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"lru-cache": "^10.2.0",
"nanoid": "^5.0.4",
"node-fetch": "^3.3.2",
"p-queue": "^8.0.1",
"pino": "^9.3.2",
"pino-http": "^10.2.0",
"sequelize": "^6.35.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"nock": "^13.5.0",
"standard": "^17.1.0",
"supertest": "^6.3.4"
}
}