-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "@deeplumen/agentcart",
"version": "0.1.0",
"description": "Local AI shopping agent - npm globally installable",
"type": "module",
"bin": {
"agentcart": "dist/server/main.js",
"agentcart-setup": "dist/server/setup.js",
"agentcart-doctor": "dist/server/doctor.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc && vite build",
"dev": "tsx src/main.ts",
"dev:ui": "vite",
"lint": "eslint src ui-src"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.74",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.0.0",
"better-sqlite3": "^12.8.0",
"fastify": "^5.8.2",
"nodemailer": "^8.0.2",
"open": "^11.0.0",
"playwright-core": "1.58.2",
"resend": "^6.9.3",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"@types/nodemailer": "^7.0.11",
"@types/ws": "^8.18.1",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.57.0",
"vite": "^7.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}