-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.12 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.12 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"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",
"firebase:deploy": "firebase --project $FIREBASE_PROJECT_ID deploy --only firestore:rules,firestore:indexes"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.758.0",
"@eslint/js": "^9.21.0",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@genkit-ai/googleai": "^1.1.0",
"@google-cloud/storage": "^7.15.2",
"@google/generative-ai": "^0.23.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.3",
"@sveltejs/kit": "^2.18.0",
"@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/jspdf": "^2.0.0",
"@types/node": "^22.13.9",
"@types/qrcode": "^1.5.5",
"@types/rfc2047": "^2.0.3",
"autoprefixer": "^10.4.20",
"chart.js": "^4.4.2",
"debug": "^4.4.0",
"docx": "^9.5.1",
"dompurify": "^3.2.4",
"dotenv": "^16.4.7",
"echarts": "^5.6.0",
"echarts-wordcloud": "^2.1.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"firebase": "^11.4.0",
"firebase-admin": "^12.7.0",
"firebase-tools": "^14.9.0",
"flowbite": "^2.5.2",
"flowbite-svelte": "^0.47.4",
"genkit": "^0.9.12",
"genkitx-openai": "^0.22.3",
"globals": "^15.15.0",
"html2canvas": "^1.4.1",
"html5-qrcode": "^2.3.8",
"husky": "^9.1.7",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"jszip": "^3.10.1",
"lint-staged": "^15.4.3",
"lucide-svelte": "^0.454.0",
"marked": "^15.0.7",
"mdsvex": "^0.11.2",
"openai": "^4.86.2",
"prettier": "^3.5.3",
"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.22.5",
"svelte-check": "^4.1.4",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"uuid": "^11.1.0",
"vite": "^5.4.14",
"vite-plugin-static-copy": "^2.3.0",
"vitest": "^2.1.9",
"xlsx": "^0.18.5",
"zod": "^3.24.2"
},
"lint-staged": {
"*.{yml,yaml,json,js,ts,css,html,svelte}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "pnpm@10.6.3",
"dependencies": {
"@inlang/paraglide-sveltekit": "0.15.5"
}
}