forked from tegnike/aituber-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.4 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
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
83
{
"name": "aituber-kit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev-https": "next dev --experimental-https",
"build": "next build",
"start": "next build && next start",
"export": "next export",
"lint": "next lint",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"electron": "wait-on http://localhost:3000 && electron ./electron.mjs",
"desktop": "NEXT_PUBLIC_BACKGROUND_IMAGE_PATH=\"\" run-p dev electron"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.48",
"@ai-sdk/azure": "^0.0.32",
"@ai-sdk/cohere": "^0.0.22",
"@ai-sdk/google": "^0.0.46",
"@ai-sdk/mistral": "^0.0.38",
"@ai-sdk/openai": "^0.0.54",
"@anthropic-ai/sdk": "^0.20.8",
"@azure/identity": "^4.5.0",
"@charcoal-ui/icons": "^2.6.0",
"@google-cloud/text-to-speech": "^5.0.1",
"@google/generative-ai": "^0.11.3",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.5",
"@marp-team/marp-core": "^3.9.0",
"@marp-team/marpit": "^3.0.0",
"@pixiv/three-vrm": "^3.0.0",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/uuid": "^10.0.0",
"@vercel/analytics": "^1.3.1",
"ai": "^3.3.20",
"axios": "^1.6.8",
"canvas": "^2.11.2",
"formidable": "^3.5.1",
"groq-sdk": "^0.3.3",
"i18next": "^23.6.0",
"next": "^14.2.5",
"ollama-ai-provider": "^0.13.0",
"openai": "^4.68.4",
"pdfjs-dist": "^4.5.136",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^13.3.1",
"three": "^0.167.1",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@charcoal-ui/tailwind-config": "^2.6.0",
"@gltf-transform/core": "^2.4.6",
"@types/dom-speech-recognition": "^0.0.1",
"@types/formidable": "^3.4.5",
"@types/node": "^22.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/three": "0.167.1",
"autoprefixer": "^10.4.20",
"electron": "^30.0.8",
"electron-is-dev": "^3.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"typescript": "5.0.2",
"wait-on": "^7.2.0"
},
"engines": {
"node": "^20.0.0"
}
}