-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.73 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
84
85
86
87
88
89
90
91
92
93
94
{
"private": true,
"name": "hinagiku",
"version": "0.0.1",
"type": "module",
"scripts": {
"prepare": "husky",
"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",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "prettier --ignore-path .gitignore --check . && eslint .",
"test": "vitest",
"stt": "pnpm tsx scripts/speech2text.ts",
"pdf": "pnpm tsx scripts/pdf2text.ts",
"tsx": "tsx --tsconfig tsconfig.tsx.json",
"student": "pnpm tsx scripts/createTestStudent.ts",
"conversation": "pnpm tsx scripts/createTestConversation.ts"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.749.0",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@genkit-ai/googleai": "^0.9.12",
"@google-cloud/storage": "^7.15.1",
"@google/generative-ai": "^0.21.0",
"@hinagiku/ffmpeg-core": "0.12.6-pcm-mpeg-only",
"@inlang/paraglide-js": "1.11.8",
"@ricky0123/vad-web": "^0.0.22",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/adapter-vercel": "^5.6.2",
"@sveltejs/kit": "^2.17.2",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@tailwindcss/typography": "^0.5.16",
"@types/debug": "^4.1.12",
"@types/echarts": "^4.9.22",
"@types/eslint": "^9.6.1",
"@types/node": "^22.13.4",
"@types/qrcode": "^1.5.5",
"@types/rfc2047": "^2.0.3",
"autoprefixer": "^10.4.20",
"debug": "^4.4.0",
"dompurify": "^3.2.4",
"dotenv": "^16.4.7",
"echarts": "^5.6.0",
"echarts-wordcloud": "^2.1.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"firebase": "^11.3.1",
"firebase-admin": "^12.7.0",
"flowbite": "^2.5.2",
"flowbite-svelte": "^0.47.4",
"genkit": "^0.9.12",
"globals": "^15.15.0",
"html5-qrcode": "^2.3.8",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"lucide-svelte": "^0.454.0",
"marked": "^15.0.7",
"mdsvex": "^0.11.2",
"openai": "^4.85.1",
"prettier": "^3.5.1",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"qrcode": "^1.5.4",
"rfc2047": "^4.0.1",
"svelte": "^5.20.1",
"svelte-check": "^4.1.4",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"uuid": "^11.0.5",
"vite": "^5.4.14",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^2.1.9",
"zod": "^3.24.2"
},
"lint-staged": {
"*.{yml,yaml,json,js,ts,css,html,svelte}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "pnpm@9.15.1",
"dependencies": {
"@inlang/paraglide-sveltekit": "0.15.5"
}
}