-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.61 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
{
"name": "voicecue",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "簡報逐段語音朗讀工具:載入 PDF 或貼上講稿,簡報者按鍵觸發朗讀,觀眾只看到投影片",
"license": "MIT",
"keywords": [
"presentation",
"text-to-speech",
"pdf",
"presenter-view",
"speech-synthesis",
"traditional-chinese"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"typecheck": "tsc -b --noEmit",
"preview": "vite preview",
"selftest": "esbuild scripts/selftest.ts --bundle --platform=node --format=esm --outfile=node_modules/.cache/selftest.mjs --log-level=error && node node_modules/.cache/selftest.mjs",
"smoke": "node scripts/smoke.mjs",
"smoke:file": "node scripts/smoke-file.mjs",
"smoke:fullscreen": "node scripts/smoke-fullscreen.mjs",
"smoke:pagenav": "node scripts/smoke-pagenav.mjs"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-toggle-group": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"lucide-react": "^0.475.0",
"pdfjs-dist": "^4.10.38",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-singlefile": "^2.1.0"
}
}