forked from tover0314-w/opentypeless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.1 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
{
"name": "opentypeless",
"private": true,
"version": "0.1.42",
"type": "module",
"description": "AI-powered speech-to-text and text polishing desktop app",
"keywords": [
"speech-to-text",
"stt",
"llm",
"tauri",
"desktop",
"voice-input"
],
"repository": {
"type": "git",
"url": "https://github.com/tover0314-w/opentypeless"
},
"homepage": "https://www.opentypeless.com",
"bugs": {
"url": "https://github.com/tover0314-w/opentypeless/issues"
},
"author": "OpenTypeless Contributors",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint src/",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@tauri-apps/api": "2.11.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2",
"@tauri-apps/plugin-deep-link": "^2.2",
"@tauri-apps/plugin-global-shortcut": "^2.2",
"@tauri-apps/plugin-opener": "^2.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.2",
"@tauri-apps/plugin-updater": "^2.10.1",
"better-auth": "1.6.25",
"framer-motion": "^11.18",
"i18next": "^24.2",
"lucide-react": "^0.460",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.4",
"zustand": "^5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.1",
"@tauri-apps/cli": "2.11.2",
"@testing-library/jest-dom": "^6.6",
"@testing-library/react": "^16.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"jsdom": "^25.0",
"prettier": "^3.5",
"tailwindcss": "^4.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"overrides": {
"brace-expansion": "5.0.9",
"nanoid": "3.3.18",
"postcss": "8.5.23"
}
}