-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.59 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
{
"name": "convoai-quickstart-web-nextjs",
"version": "0.1.0",
"description": "Next.js quickstart for building conversational AI applications with Agora's Conversational AI Engine",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"doctor": "node scripts/doctor.mjs",
"dev": "next dev --webpack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"verify:api": "node --import tsx scripts/verify-api-contracts.ts",
"typecheck": "tsc --noEmit",
"verify": "pnpm run doctor && pnpm run lint && pnpm run typecheck && pnpm run verify:api && pnpm run build"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.39",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"agora-agent-client-toolkit": "2.10.0",
"agora-agent-uikit": "1.1.0",
"agora-agents": "^2.9.0",
"agora-rtc-react": "^2.5.1",
"agora-rtc-sdk-ng": "^4.24.3",
"agora-rtm": "^2.2.3",
"agora-token": "^2.0.5",
"ai": "^6.0.107",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.454.0",
"next": "^16.2.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^22.10.6",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.2",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.20.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.58.1"
}
}