-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.81 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
{
"name": "mastodon-bot",
"version": "1.0.4",
"description": "A Mastodon Bot",
"main": "index.js",
"author": "Patrick Hochstenbach <[email protected]>",
"license": "MIT",
"scripts": {
"fetch-cron": "npx mastodon-cli fetch",
"fetch": "npx mastodon-cli fetch --streaming",
"server": "npx ldn-inbox-server start-server",
"handle-accepted-dev": "npx ldn-inbox-server handler ./accepted --config ./config/development/accepted_config.json5 -hn @handler/notification_handler/multi.js",
"handle-accepted": "npx ldn-inbox-server handler ./accepted --config ./config/accepted_config.json5 -hn @handler/notification_handler/multi.js",
"handle-inbox": "npx ldn-inbox-server handler @inbox -hn @handler/notification_handler/multi.js",
"handle-outbox": "npx ldn-inbox-server handler @outbox -hn @handler/notification_handler/multi.js",
"clean": "rm inbox/* ; rm accepted/* ; rm error/* ; rm outbox/* ; npx eventlog-server remove-all",
"real-clean": "rm .history ; yarn run clean",
"demo-accepted": "cp data/example_incoming.jsonld accepted",
"demo-metadata": "npx eventlog-server add data/example_incoming.jsonld data/example_outgoing.jsonld ; cp data/example_metadata.jsonld inbox",
"demo-metadata-reject": "npx eventlog-server add data/example_incoming.jsonld data/example_outgoing.jsonld ; cp data/example_metadata_reject.jsonld inbox",
"demo-multi-url": "cp data/example-multi-url/* accepted",
"cache-admin": "npx eventlog-server",
"wikijs-cli": "npx wikijs",
"wikijs-updater": "npx updater"
},
"dependencies": {
"chalk": "2.4.2",
"citation-js": "^0.7.15",
"commander": "^12.1.0",
"ldn-inbox-server": "^1.8.3",
"mastodon-cli": "^1.1.6",
"md5": "^2.3.0",
"node-fetch": "^2.7.0",
"node-html-parser": "^6.1.13",
"postgres": "^3.4.4"
}
}