-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "supermarket-ops-agent",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Conversational agent that runs an Indian kirana store from Telegram. Vercel AI SDK + Anthropic.",
"scripts": {
"build": "tsc -p tsconfig.json && mkdir -p dist/db && cp src/db/schema.sql dist/db/schema.sql",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"seed": "tsx src/db/seed.ts",
"test": "node --import tsx --test test/**/*.test.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.23",
"@openrouter/ai-sdk-provider": "^3.0.0",
"ai": "^7.0.38",
"better-sqlite3": "^11.8.1",
"grammy": "^1.30.0",
"pdfkit": "^0.15.1",
"pptxgenjs": "^3.12.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.5",
"@types/pdfkit": "^0.13.9",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"allowScripts": {
"better-sqlite3@11.10.0": true,
"esbuild@0.28.1": true
}
}