-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "agent-jamie",
"version": "1.0.0",
"description": "an agent that has the ability to reason about previous podcast (graph rag)",
"main": "app.js",
"scripts": {
"prebuild": "mkdir -p dbs && chmod 755 dbs",
"check:npm-hardening": "node scripts/check-npm-hardening.js",
"deps:update": "scripts/safe-npm-update.sh update",
"deps:install": "scripts/safe-npm-update.sh install",
"test": "node test/test-hmac.js",
"test:hmac": "node test/test-hmac-all.js",
"setup-subtitle-test": "node setup-subtitle-test.js",
"test-subtitles": "node test-subtitles.js",
"test-server-subtitles": "node test-server-subtitles.js",
"generate-openapi": "node swagger.js",
"skills:build": "node scripts/skills/build-smithery.js && node scripts/skills/build-clawhub-zip.js",
"skills:build:smithery": "node scripts/skills/build-smithery.js",
"skills:build:clawhub": "node scripts/skills/build-clawhub-zip.js",
"nostr:check-zaps": "node scripts/check-zap-receipts.js",
"nostr:watch-mentions": "node scripts/nostr-watch-mentions.js",
"nostr:watch-zaps": "node scripts/nostr-watch-zaps.js",
"nostr:process-mentions": "node scripts/nostr-process-mentions.js",
"nostr:decrypt-private-zap": "node scripts/nostr-decrypt-private-zap.js",
"test:zap-validator": "node tests/zap-receipt-validator.test.js",
"test:reranker": "node tests/clip-reranker.test.js",
"test:relay-pool": "node tests/nostr-relay-pool.test.js"
},
"author": "uj21",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@aws-sdk/client-s3": "^3.717.0",
"@aws-sdk/s3-request-presigner": "^3.758.0",
"@getalby/sdk": "^7.0.0",
"@langchain/community": "^1.1.15",
"@langchain/openai": "^1.4.4",
"@pinecone-database/pinecone": "^4.1.0",
"axios": "^1.18.0",
"bolt11": "^1.4.1",
"canvas": "^3.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.1",
"fast-xml-parser": "^5.7.3",
"ffmpeg": "^0.0.4",
"fluent-ffmpeg": "^2.1.3",
"jsonwebtoken": "^9.0.3",
"macaroons.js": "^0.3.9",
"mongoose": "^8.24.1",
"natural": "^8.0.1",
"neo4j-driver": "^5.26.0",
"node-cron": "^4.0.5",
"node-fetch": "^2.7.0",
"node-html-parser": "^7.0.1",
"nostr-tools": "^2.16.2",
"openai": "^4.70.2",
"sharp": "^0.35.0",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1",
"twitter-api-v2": "^1.23.2",
"umap-js": "^1.4.0",
"wav": "^1.0.2",
"web-streams-polyfill": "^4.0.0",
"ws": "^8.20.1"
},
"devDependencies": {
"archiver": "^7.0.1",
"js-yaml": "^4.3.1"
},
"overrides": {
"axios": "^1.18.0",
"body-parser": "^1.20.6",
"brace-expansion@1": "^1.1.18",
"brace-expansion@2": "^2.1.4",
"form-data": "^4.0.6",
"ip-address": "^10.3.1",
"langsmith": "^0.6.0",
"qs": "^6.15.2",
"uuid": "^11.1.1",
"ws": "^8.20.1"
}
}