-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.81 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.81 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
{
"name": "thirdweb-docs-agent",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"chat:ts": "tsx typescript/src/cli.ts",
"chat:py": "export PATH=\"$(pwd)/node_modules/.bin:$PATH\" && cd python && source venv/bin/activate && python -m cli \"$@\"",
"chat": "npm run chat:py",
"dev": "tsx typescript/src/index.ts",
"build": "cd typescript && tsc",
"start": "node typescript/dist/index.js",
"setup:py": "cd python && python3 -m venv venv && source venv/bin/activate && pip install -r requirements.txt",
"download:docs": "tsx scripts/download-docs.ts",
"download:docs:openapi": "tsx scripts/download-docs.ts openapi",
"download:docs:llm": "tsx scripts/download-docs.ts llm-txt",
"chunk:docs": "tsx scripts/chunk-documents.ts",
"generate:embeddings": "tsx scripts/generate-embeddings.ts",
"setup:embeddings": "npm run chunk:docs && npm run generate:embeddings",
"truncate:db": "tsx scripts/truncate-table.ts",
"daily:refresh": "npm run download:docs && npm run chunk:docs && npm run truncate:db && npm run generate:embeddings",
"test:queries": "tsx scripts/test-queries.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "Customer support agent for thirdweb using Claude Agent SDK",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.5",
"@anthropic-ai/claude-code": "^2.0.5",
"@supabase/supabase-js": "^2.39.0",
"adm-zip": "^0.5.16",
"chalk": "^4.1.2",
"dotenv": "^17.2.3",
"fs-extra": "^11.3.2",
"glob": "^10.3.10",
"gpt-tokenizer": "^2.1.1",
"openai": "^4.28.0",
"ora": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^24.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}