-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.26 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "astro-tailwind-ollama",
"version": "1.0.0",
"type": "module",
"description": "A modern AI chat web application built with Astro.js, Tailwind CSS, and Ollama AI",
"keywords": [
"astro",
"tailwindcss",
"ollama",
"ai",
"chat",
"llm",
"typescript"
],
"homepage": "https://github.com/yourusername/astro-tailwind-ollama#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/astro-tailwind-ollama.git"
},
"bugs": {
"url": "https://github.com/yourusername/astro-tailwind-ollama/issues"
},
"author": {
"name": "Your Name",
"email": "your.email@example.com"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"server": "tsx src/server.ts",
"server:dev": "nodemon --exec tsx src/server.ts",
"server:watch": "nodemon --watch src --ext ts --exec tsx src/server.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.4.0",
"@astrojs/tailwind": "^6.0.2",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/supabase-js": "^2.76.1",
"@tailwindcss/vite": "^4.1.14",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"astro": "^5.14.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"lucide-react": "^0.546.0",
"ollama": "^0.6.0",
"openai": "^6.8.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.18",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.7.2",
"nodemon": "^3.1.10",
"tsx": "^4.20.6"
}
}