-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
46
{
"name": "nostr-monitoring-tool",
"version": "0.7.1",
"description": "A simple monitoring tool that classify nostr events (SFW/NSFW, language, topic, sentiment, etc).",
"main": "src/index.mjs",
"type": "module",
"scripts": {
"start": "node src/index.mjs",
"dev": "nodemon --delay 2 -q src/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atrifat/nostr-monitoring-tool.git"
},
"keywords": [
"nostr",
"monitoring"
],
"author": "Rif'at Ahdi Ramadhani",
"license": "MIT",
"bugs": {
"url": "https://github.com/atrifat/nostr-monitoring-tool/issues"
},
"homepage": "https://github.com/atrifat/nostr-monitoring-tool#readme",
"devDependencies": {
"@types/node": "^20.8.3",
"nodemon": "^3.0.1"
},
"dependencies": {
"@nlpjs/lang-en": "^4.26.1",
"@nostr-fetch/adapter-nostr-tools": "^0.13.0",
"@ultraq/promise-utils": "^0.7.1",
"await-to-js": "^3.0.0",
"axios": "^1.7.7",
"dotenv": "^16.3.1",
"lru-cache": "^10.0.1",
"mqtt": "^5.1.0",
"nostr": "^0.2.8",
"nostr-fetch": "^0.13.0",
"nostr-tools": "^1.16.0",
"p-limit": "^4.0.0",
"url-regex-safe": "^4.0.0",
"uuid": "^9.0.1",
"websocket-polyfill": "^0.0.3"
}
}