-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.51 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
{
"name": "dreamcode",
"version": "0.2.0",
"private": true,
"description": "Interactive Vibe Coding crash course — 22 lessons with AI teaching assistant, gamification, and code playground",
"author": "DreamNight",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sixtdreanight/vibe-coding-agent.git"
},
"bugs": {
"url": "https://github.com/sixtdreanight/vibe-coding-agent/issues"
},
"homepage": "https://github.com/sixtdreanight/vibe-coding-agent#readme",
"keywords": [
"vibe-coding",
"education",
"ai",
"tutorial",
"nextjs",
"typescript",
"llm"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.71",
"@ai-sdk/gateway": "^3.0.122",
"@ai-sdk/openai": "^3.0.53",
"@ai-sdk/provider-utils": "^4.0.27",
"@anthropic-ai/sdk": "^0.91.1",
"ai": "^6.0.168",
"lucide-react": "^1.11.0",
"next": "16.2.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"jsdom": "^29.1.1",
"sharp": "^0.35.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.8"
}
}