-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.56 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@evanp/activitypub-bot",
"version": "0.28.0",
"description": "server-side ActivityPub bot framework",
"type": "module",
"main": "lib/index.js",
"bin": {
"activitypub-bot": "bin/activitypub-bot.js"
},
"scripts": {
"test": "NODE_ENV=test node --test",
"start": "npx activitypub-bot",
"lint": "eslint ."
},
"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": "^2.1.4",
"activitystrea.ms": "^3.3.0",
"express": "^5.2.1",
"http-errors": "^2.0.0",
"humanhash": "^1.0.4",
"lru-cache": "^11.1.0",
"nanoid": "^5.1.5",
"node-fetch": "^3.3.2",
"p-queue": "^9.1.0",
"pino": "^10.1.1",
"pino-http": "^11.0.0",
"sequelize": "^6.37.7"
},
"devDependencies": {
"@evanp/activitypub-nock": "^0.7.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"nock": "^14.0.5",
"supertest": "^7.1.4"
},
"optionalDependencies": {
"mysql2": "^3.9.1",
"pg": "^8.16.3",
"sqlite3": "^6.0.1"
},
"engines": {
"node": "^20 || ^22 || ^24 || ^25"
},
"engineStrict": true
}