-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "nostrmind",
"version": "0.1.0",
"description": "Config-driven Nostr intelligence sieve with relay monitoring and DM alerts",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"nostr",
"typescript",
"docker",
"watchdog"
],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/static": "^9.0.0",
"better-sqlite3": "^11.8.1",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"nostr-tools": "^2.23.3",
"openai": "^4.91.1",
"pino": "^10.3.1",
"pino-pretty": "^13.0.0",
"ws": "^8.18.1",
"yargs": "^17.7.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.15",
"@types/ws": "^8.5.14",
"@types/yargs": "^17.0.32",
"supertest": "^7.1.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^7.3.1",
"vitest": "^3.0.9"
}
}