-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 KB
/
package.json
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
{
"name": "ai-chat-app",
"description": "A work-in-progress AI chat app built with Svelte 5 that uses OpenAI and Anthropic APIs.",
"author": "Gunnar Omander <gunnar@gomander.dev> (https://gomander.dev)",
"homepage": "https://github.com/gomander/ai-chat-app",
"version": "0.0.1",
"license": "GPL-3.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"engines": {
"node": ">= 20.9"
},
"dependencies": {
"@anthropic-ai/sdk": "~0.33.1",
"@google/generative-ai": "~0.21.0",
"browser-fs-access": "~0.35.0",
"dompurify": "^3.2.3",
"gpt-tokenizer": "^2.8.1",
"highlight.js": "^11.11.1",
"marked": "^15.0.4",
"openai": "^4.77.0",
"svelte-autosize": "^1.1.5"
},
"devDependencies": {
"@skeletonlabs/skeleton": "^3.0.0-next.10",
"@sveltejs/adapter-node": "^5.2.11",
"@sveltejs/kit": "^2.15.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/forms": "~0.5.9",
"@tailwindcss/typography": "~0.5.15",
"@types/node": "^22.10.2",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"svelte": "^5.16.0",
"svelte-check": "^4.1.1",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-tailwind-purgecss": "~0.3.5"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/gomander/ai-chat-app.git"
},
"bugs": {
"url": "https://github.com/gomander/ai-chat-app/issues",
"email": "gunnar@gomander.dev"
},
"private": true
}