-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
{
"name": "client-intake-agent",
"version": "0.1.0",
"private": true,
"description": "Deployable Next.js template for an AI chat-style client intake / lead-qualification form: conversational Claude agent, structured tool-use extraction, config-driven questions and scoring, Supabase persistence, and webhook delivery.",
"keywords": [
"ai",
"lead-qualification",
"client-intake",
"next.js",
"supabase",
"anthropic",
"claude",
"chatbot",
"template"
],
"author": "Rick (https://github.com/brutusdev0)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/brutusdev0/client-intake-agent.git"
},
"homepage": "https://github.com/brutusdev0/client-intake-agent#readme",
"bugs": {
"url": "https://github.com/brutusdev0/client-intake-agent/issues"
},
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.30.2",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.111.0",
"@supabase/supabase-js": "^2.110.2",
"next": "^16.2.10",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"prettier": "^3.9.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
}
}