forked from nostrability/sherlock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "@nostrability/sherlock",
"version": "0.1.0",
"description": "Passive relay listener that validates Nostr events against JSON Schemas and identifies apps producing malformed blobs",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nostrability/sherlock.git"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"bin": {
"sherlock": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"scan": "node dist/index.js scan",
"report": "node dist/index.js report",
"stats": "node dist/index.js stats",
"generate": "node ../schemata-codegen/dist/index.js --schemas ../schemata/dist --registry src/generated/kind-registry.ts --errors src/generated/error-messages.ts"
},
"dependencies": {
"@nostrability/schemata": "^0.2.6",
"ajv": "^8.17.1",
"better-sqlite3": "^11.0.0",
"commander": "^12.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.6.0"
}
}